|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-01-07 18:45 UTC] support at rhsoft dot net
I found some problems with the ISAPI module under windows with differnet webservers First: mail() dont work (Mail-Server: http://www.cmfperception.com/liteserve.html) - with php.exe it will work Second: The session.save_path will be ignored in php.ini and php try to use /tmp what cant be found on win and when i use the php.exe must be / instead of \ in the path when it should work Hope i can help and sorry about my bad english (come from austria) PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 08:00:02 2025 UTC |
I suspect that your ISAPI module isn't reading correct php.ini. You can verify this by looking on top of phpinfo() output page were the used php.ini file will be specified. I just tested mail() and it works correctly. You could also try to specify the two ini parameters in the scripts itself: ini_set('SMTP', 'mail.example.com'); ini_set('sendmail_from', 'test@example.com'); mail("test@example.com", "test", "test");