I recently installed PHP onto my website after a reformat. I have a php script that logs all visitors to my website, and it worked before the reformat. However, now I get the following error message in my ISAPI log when someone views my website:
PHP4ISAPI.DLL: GetServerVariable 'HTTPS' not found
PHP4ISAPI.DLL: GetServerVariable 'REMOTE_ADDR' not found
PHP4ISAPI.DLL: GetServerVariable 'APPL_MD_PATH' not found
PHP4ISAPI.DLL: GetServerVariable 'APPL_PHYSICAL_PATH' not found
PHP4ISAPI.DLL: GetServerVariable 'INSTANCE_ID' not found
PHP4ISAPI.DLL: GetServerVariable 'INSTANCE_META_PATH' not found
When I do a phpinfo(), none of the above variables are listed. I don't understand what could be causing the problem, because after the reformat, I overwrote all the new installation files with my previous web/sql server info.
When I look into the php4isapi.dll file, I see all the above variables in the file, but for some reason, it is not working correctly. Does anyone have any ideas of why these messages keep appearing?
I am using the $REMOTE_ADDR statement in the script, but it still is not working correctly.
Brian