I am using SUSE Workstation 9.0 and using Apache/2.0.49-dev and PHP 4.3.3 when loading the main index.php I get the following HTML:
-----------------------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>
------------------------------------------------
and that is it. I have register_globals turned on (even tho it is evil) and I am getting nothing. Anyone have an idea?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
1. Enable register_globals... at least for the IPM directory. "php_admin_flag register_globals on" in a <Directory> section in httpd.conf is what I use. This corrects the 404 problem.
2. Modify the setcookie() call in the loginaction() function of functions.php so that the third argument is the number zero instead of an empty string. This corrects the login bug.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am using SUSE Workstation 9.0 and using Apache/2.0.49-dev and PHP 4.3.3 when loading the main index.php I get the following HTML:
-----------------------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>
------------------------------------------------
and that is it. I have register_globals turned on (even tho it is evil) and I am getting nothing. Anyone have an idea?
1. Enable register_globals... at least for the IPM directory. "php_admin_flag register_globals on" in a <Directory> section in httpd.conf is what I use. This corrects the 404 problem.
2. Modify the setcookie() call in the loginaction() function of functions.php so that the third argument is the number zero instead of an empty string. This corrects the login bug.