SitePoint Sponsor |
|
User Tag List
Results 1 to 2 of 2
Thread: PHP mail() on Windows 95
-
May 6, 2001, 22:06 #1
- Join Date
- Jun 2000
- Location
- Summerland, BC, Canada.
- Posts
- 226
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
I've installed Apache and PHP as an Apache module on my Windows 95 machine, and was hoping someone could shine some light on why running the PHP mail() function causes an illegal operation. Running PHP not as a module causes PHP to crash, and as a module causes an illegal operation in Apache. I've commented out the mail() call, and the script runs fine, then uncommented the line, and it crashes again, so I'm pretty certain it's mail() that does it.
Ed Rands
-
May 6, 2001, 22:48 #2
- Join Date
- Mar 2001
- Posts
- 3,537
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Hi,
I don't really know the specifics of what to do when you have apache installed as a module. I have apache/php installed as cgi, and to use the mail() function I had to change a couple of things in my php.ini file:
[mail function]
; For Win32 only.
SMTP = mail.btinternet.com
; For Win32 only.
sendmail_from = somename@btinternet.com
; For Unix only. You may supply arguments as well (default: 'sendmail -t -i').
;sendmail_path =
You probably have to do something similar. SMTP is your outgoing mail server, and sendmail_from is your email acount.
Bookmarks