henk-van-de-kamer
Member
OP
Today I had the same problem and after investigation I found that this script is before the new register_globals policy of PHP 4.3.0 and higher. See http://nl3.php.net/register_globals for the reason why. <br /> <br />Setting register_globals to on is therefor not an option. You can change the code for example to: <br /> <br /><? <br /> <br />$action = $_POST[´action´]; <br />if(empty($action)) <br />{ <br />?> <br /> <br />With that I hit the wall in step 2. Etc. So the solution is to completly modify the code. That is a major undertaking. May be I´ll do that, but first see under what kind of license this code is released. Or may be someone else has already done the good work? <br />