Re: [openupload-devel] Warnings
Status: Beta
Brought to you by:
tsdogs
|
From: Bob M. <bo...@co...> - 2012-11-27 00:30:19
|
> I'm new to open upload. I have successfully installed the program on > my Win 7 PC. Here is your first problem, but I commend your bravery ;) > 1.-On top of the Login Screen I get this message: > Strict Standards: Declaration of defaultAuth::useredit() should be > compatible with authBase::useredit($user) in C:\websites\openupload > \lib\modules\auth\default.inc.php on line 72 The strict standards warnings *should (ie no guarantees) all be completely harmless. You can disable the error reporting so the error doesn't show, google will show you at least 3 different ways to do it... > 2.- After uploading a file I get this warnings: > > Warning: mail(): Failed to connect to mailserver at "localhost" port > 25, Since you are using a win7 PC, you probably do not have a mail server installed on it. Hence, you are not able to send mail out through localhost:25. Either install a mail server on your local machine, or you will have to figure out how to get php to send mail through windows... > verify your "SMTP" and "smtp_port" setting in php.ini or use > ini_set() in C:\websites\openupload\lib\general.inc.php on line 269 You might have a newer version of openupload than I do, I cannot configure SMTP in mine. But this error message suggests you can configure the SMTP server of your ISP or hosting provider in C:\websites \openupload\lib\general.inc.php on line 269 > The file does upload, but no one gets an email with a link to download > the file. As expected. The error above says it cannot find a mail server to send email with... > > 3.- When I try to create a new user, I don't get any error message but > users aren't created or they don't show up on the users list. Not sure what is going on there, but I would suggest looking in your apache logs, you might find a clue in there... > |