On Dec 14, 2003, at 12:47, Joshua wrote:
My problem is none of the links work. Whenever I click on them it stays on the main page. After reading through the pages it was noted that this problem could occur due to not setting register_globals = On in php.ini. The variable had already been set correctly so this couldn't be the problem.
Before you look at other things, make sure that's really set. Sometimes there are multiple php.ini files present in the system, or Apache+PHP hasn't been completely restarted and so hasn't reloaded the file.
Make a quick test.php like this:
<? echo "Testing: " . htmlspecialchars($testing); ?>
now try to load http://<yourserver>/test.php?testing=hello
If it doesn't say "Testing: hello", register_globals isn't on. Also try the phpinfo() function which dumps a lot of configuration settings so you can confirm they're right.
-- brion vibber (brion @ pobox.com)