LinuxGroup
11-19-2001, 02:04 PM
For some reason it is not supported. Any Idea why?
Heres and example error i receive
Warning: mail() is not supported in this PHP build in /path/to/script on line 10
mahinder
11-19-2001, 02:26 PM
check mail server path option in php.ini file. i don't remember exact string right now.
HostingDirect
11-19-2001, 03:46 PM
You may want to load and run phpinfo.php to see what the installed mail options are.
ffeingol
11-19-2001, 03:52 PM
The most common cause that I have see for this is that either PHP was built before mail was installed on your system (and therefore the configure script could not find it) or mail is installed in a non-standard location (and therefore the configure script can not find it).
When I say mail, it means either sendmail or qmail etc. (i.e. /usr/lib/sendmail).
Frank
HostingDirect
11-19-2001, 03:56 PM
I have also had problems php not being compiled with the "-t -i" option set for sendmail.
ffeingol
11-19-2001, 04:02 PM
You can always override the -t -i parameters in the php.ini with the sendmail_path variable.
HostingDirect
11-19-2001, 04:05 PM
Cool, I did not know that trick!
Thanks,