Hi,
php is working for the most part on my NT server.
I recently needed to activate the ability to upload files.
When the CGI ran, it just timed out.
Event viewer didn't report any errors other than that the CGI had timed out.
I found documentation that I needed to add lines to my php3.ini file to allow file uploads.
At first I coded it as
upload_files=on
I read further that it was case-sensitive.
I recoded it and added tabbing since that's what other entries in the file looked like. I coded it with a capital "O" as
upload_files = On
PHP documentation stated that for CGI's, no server reboot should be required. When the php3 file runs it should pick up any changes to the php3.ini file that have been made. Am I reading this correctly? I shouldn't have to reboot?
In any event, uploads aren't working.
Any idea what else I might need to look at?
Are there any security issues?
This is IIS4 running on NT 4.0 service pack 6.