From: Patrick T. <pa...@se...> - 2004-12-25 01:09:47
|
I have a client on my webserver who is complaining that users aren't able to sign up for access to his phpwebsite forums. What does phpwebsite need to have to play nicely with sendmail. I'm using exim, but there is a command /usr/bin/sendmail there for backwards compatibility with exim. (Mailwrapper scripts) when I just type sendmail at the prompt I get: patrick@bender patrick $ sendmail Exim is a Mail Transfer Agent. It is normally called by Mail User Agents, not directly from a shell command line. Options and/or arguments control what it does when called. For a list of options, see the Exim documentation. patrick@bender patrick $ Is this right, or is there something else I need to set up. Thanks for the help and Happy Holidays! Patrick Twohig. |
From: Shaun M. <sh...@ae...> - 2004-12-25 12:41:29
|
On 25 Dec 2004, at 01:49, Patrick Twohig wrote: > I have a client on my webserver who is complaining that users aren't > able to sign up for access to his phpwebsite forums. What does > phpwebsite need to have to play nicely with sendmail. I'm using exim, > but there is a command /usr/bin/sendmail there for backwards > compatibility with exim. (Mailwrapper scripts) when I just type > sendmail at the prompt I get: I'm using exim also with the same sendmail compatibility so it's not that. The account signup uses the PHP Mail function or PEAR Mail class. Check you can signup yourself, Check you've not disabled sending mail in your php config. Some hosts don't allow sending mail from php. Shaun aegis design - http://www.aegisdesign.co.uk |
From: Greg T. <gt-...@ta...> - 2004-12-26 21:10:07
|
There is a recent bug that may be causing this. I have posted it (along with a patch to fix it) in the project site on Sourceforge earlier this week. Does your PHP server by chance run with Safe Mode enabled? If so, then this bug is causing it - two problems specifically: 1) No users can register with the site 2) The "lost password" functionality will be broken as well. Please see two of the most recent bug filings at the project Bug Tracker: https://sourceforge.net/tracker/?group_id=15539&atid=115539 # 1089617 # 1086940 Hopefully one of the project devs can submit my patches to the tree soon! The problem has to do with "safe mode" restrictions to the PHP mail() function. Let me know if you have any questions. Greg T. On Sat, 2004-12-25 at 12:41 +0000, Shaun Murray wrote: > On 25 Dec 2004, at 01:49, Patrick Twohig wrote: > > > I have a client on my webserver who is complaining that users aren't > > able to sign up for access to his phpwebsite forums. What does > > phpwebsite need to have to play nicely with sendmail. I'm using exim, > > but there is a command /usr/bin/sendmail there for backwards > > compatibility with exim. (Mailwrapper scripts) when I just type > > sendmail at the prompt I get: > > I'm using exim also with the same sendmail compatibility so it's not > that. The account signup uses the PHP Mail function or PEAR Mail class. > Check you can signup yourself, Check you've not disabled sending mail > in your php config. Some hosts don't allow sending mail from php. > > Shaun > aegis design - http://www.aegisdesign.co.uk > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://productguide.itmanagersjournal.com/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers |
From: Patrick T. <pa...@se...> - 2004-12-27 06:13:39
|
Greg Tassone wrote: >There is a recent bug that may be causing this. I have posted it (along >with a patch to fix it) in the project site on Sourceforge earlier this >week. > >Does your PHP server by chance run with Safe Mode enabled? If so, then >this bug is causing it - two problems specifically: > >1) No users can register with the site > >2) The "lost password" functionality will be broken as well. > >Please see two of the most recent bug filings at the project Bug >Tracker: >https://sourceforge.net/tracker/?group_id=15539&atid=115539 > ># 1089617 ># 1086940 > >Hopefully one of the project devs can submit my patches to the tree >soon! The problem has to do with "safe mode" restrictions to the PHP >mail() function. > >Let me know if you have any questions. > >Greg T. > > >On Sat, 2004-12-25 at 12:41 +0000, Shaun Murray wrote: > > >>On 25 Dec 2004, at 01:49, Patrick Twohig wrote: >> >> >> >>>I have a client on my webserver who is complaining that users aren't >>>able to sign up for access to his phpwebsite forums. What does >>>phpwebsite need to have to play nicely with sendmail. I'm using exim, >>>but there is a command /usr/bin/sendmail there for backwards >>>compatibility with exim. (Mailwrapper scripts) when I just type >>>sendmail at the prompt I get: >>> >>> >>I'm using exim also with the same sendmail compatibility so it's not >>that. The account signup uses the PHP Mail function or PEAR Mail class. >>Check you can signup yourself, Check you've not disabled sending mail >>in your php config. Some hosts don't allow sending mail from php. >> >>Shaun >>aegis design - http://www.aegisdesign.co.uk >> >> >> >>------------------------------------------------------- >>SF email is sponsored by - The IT Product Guide >>Read honest & candid reviews on hundreds of IT Products from real users. >>Discover which products truly live up to the hype. Start reading now. >>http://productguide.itmanagersjournal.com/ >>_______________________________________________ >>Phpwebsite-developers mailing list >>Php...@li... >>https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers >> >> > > > >------------------------------------------------------- >SF email is sponsored by - The IT Product Guide >Read honest & candid reviews on hundreds of IT Products from real users. >Discover which products truly live up to the hype. Start reading now. >http://productguide.itmanagersjournal.com/ >_______________________________________________ >Phpwebsite-developers mailing list >Php...@li... >https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > I don't run PHP in safe mode....But I'll have a look into it. And yes, both forgotten password and new signup are broken. Thanks. |
From: Shaun M. <sh...@ae...> - 2004-12-27 11:44:49
|
On 27 Dec 2004, at 06:53, Patrick Twohig wrote: > I don't run PHP in safe mode....But I'll have a look into it. And > yes, both forgotten password and new signup are broken. > phpSUexec also causes problems. Mail won't work as that'll stop mail going out as 'nobody'. Shaun aegis design - http://www.aegisdesign.co.uk |