Jump to content

SZero

Members
  • Posts

    27
  • Joined

  • Last visited

    Never

Everything posted by SZero

  1. hi every1.. am using a phpBB forum, a problem had occured lately when my friends started visiting the site, an error msg occure 'max user connections limit reached' and couldn't connect to db, what's this error and how to fix it? [the server is not on my pc]
  2. i real it, i just read in another website that it's not gonna work if i don't have mysql info already viewd with phpinfo(); and i have to "recompile PHP with MySQL support"
  3. yah sorry i meant undefined function mysql_connect my mistake
  4. hi every1 i am having the annoying "Undefined Function" message, anyway i read many threads on how to solve it but here's the problem, when i use phpinfo();, i didn't find the part with MySql info, i searched and found that if it doesn't exist then i need to recompile PHP with MySQL support before starting editing php.ini and that other stuff please please i really need some help on this one thanks guys...
  5. hi every1 I asked my service provider for the SMTP address then they gave me an IP number, told me it works, but i tried it and didn't work, can the SMTP server be an IP address? if it may, is there a special way to use it? ty
  6. it doesn't work, i put the 2 files in the root directory (where the index is) but still nothing.. any ideas??
  7. hi every1.. in many sites, when i try to go to a page that doesn't exits, it transferes me to a page saying so instead of showing the annoying page cannot be found, how to do this?? ty
  8. the code is correct am sure, it's just in the way of sending user and pass info with SMTP info, can this be done simply using ini_set()??
  9. hi every1 am trying to send email using mail function, i tried many servers but i get this message (authentication required), as far as i know i need username and password, i wanna know how to write them using ini_set() ty
  10. hi every1.. i'm trying to use the mail function on some free servers, i tried it on (FreeHostia.com, Lycos.com) anyway it shows no errors and php prints that the mail is sent but nothing is recived...
  11. hi every1 i wanna know how to know yahoo SMTP server to send mails from my website, i don't mean the code, everything is fine with it but i get this message when i send: SMTP server response: 530 authentication required - for help go to http://help.yahoo.com/help/us/mail/pop/p... in E:\MYDOMAIN\www\index.php on line 24 i tried going to the website but didn't help, i also tried to change port to 465 but didn't work too SMTP: smtp.mail.yahoo.com PORT: 25
  12. hi every1.. i get this weird msg trying to send mail with mail function: Warning: mail() [function.mail]: SMTP server response: 553 Bogus helo (MY-IP). <http://unblock.secureserver.net/?ip=(MY-IP)> in E:\(MY-DOMAIN)\www\index.php on line 21 what is this????
  13. i read it but still doesn't say how to use the new SMTP server and port using code any help plz
  14. i don't have php.ini in my server, i need to know how to do this using ini_set()
  15. hi every1.. i'm trying to send an email using regular mail function, well it doesn't work and i get this error: Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in E:\MYDOMAIN\www\index.php on line 19 first: i don't have the SMTP info, should i get it from the provider or i can find out what is it second: even if i have it, how to tell php to use it as i don't have a php.ini file so can any1 tell me how to use ini_set() ty..
  16. hi every1.. i posted a topic lately on how to disable debugging cause of the NOTICE message.. anyway i asked this cause when i was trying to print a variable sent in the link it shows this message and doesn't prin it.. to make it more simple, there's a page called Index.php with this code in it: <? print "$extra"; ?> i call the page like this: www.MyDomain.com/index.php?extra=Hii or www.MyDomain.com/?extra=Hii before an error appeared (NOTICE: Undefined Variable extra....) and it didn't print, now i disabled debugging, no errors show but still doesn't print.. any help plz.. ty
  17. i found out ty here's what helped me if any1 need it <?php // Turn off all error reporting error_reporting(0); // Report simple running errors error_reporting(E_ERROR | E_WARNING | E_PARSE); // Reporting E_NOTICE can be good too (to report uninitialized // variables or catch variable name misspellings ...) error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); // Report all errors except E_NOTICE // This is the default value set in php.ini error_reporting(E_ALL ^ E_NOTICE); // Report all PHP errors (bitwise 63 may be used in PHP 3) error_reporting(E_ALL); // Same as error_reporting(E_ALL); ini_set('error_reporting', E_ALL); ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.