Ruatha, you are doing a great job, keep it up! You're much appreciated by us addicted PBW players.
I don't know PHP, nor any programming language that well, so this may be a elementary question... but here goes anyway.
I was having a hard time getting the upload flag to work right. It looked like the IF test for the game name wasn't assigning a value to $testname if the $test1 and $test2 variables were equal. Thus throwing off the second IF statement. So I changed the code in Index.php
---From this---
$test1=strtolower(substr($file,0,-9));
$test2=strtolower("$gamename");
$ett=strlen($test1);
$tva=strlen($test2);
$tre=$tva-$ett;
if ($tre>0)
{
$testname=substr($gamename,0,-$tre);
}
if (strtolower(substr($file,0,-9)) == strtolower("$testname"))
---To this---
$test1=strtolower(substr($file,0,-9));
$test2=strtolower("$gamename");
$ett=strlen($test1);
$tva=strlen($test2);
$tre=$tva-$ett;
if ($tre>0)
{
$testname=substr($test2,0,-$tre);
}
else
{
$testname = $test2;
}
if ($test1 == $testname)
After making the changes the upload verification did seem to work OK. I changed the second IF statement so it wouldn't have to process the 'strtolower' (Convert string to lowercse I guess?) command again when the lowercase data was already in the $test1 and $test2 variables. I'm afraid to say this minor little change took me over 1-hour to figure out.
I don't know why the upload notification wasn't working for me, especially since I didn't see anyone else report any problems with it. But, I thought I would let you know incase anyone else was having this problem.
[ October 28, 2003, 05:32: Message edited by: Rambie ]