Seite 1 von 1
english response - load.php and Info don't work
Verfasst: Mi 14.Jan, 2004 16:17
von Anonymous
I got everything up and running, except the downloads and info won't work. The download link "load.php?id=#" tries to download load.php instead of the file. And Info does not redirect to the information page, it only refreshes the main download.php page.
Any suggestions?
Verfasst: Di 20.Jan, 2004 17:23
von Anonymous
Seems, there's a mistake in the current version... All Parameters via GET are not submitted to the next page...
I made a quick-fix on every page (download.php and load.php) where this happens:
Code: Alles auswählen
foreach($_GET as $strKey=>$strValue) {
$$strKey=$strValue;
}
Note, this is really a quick'n'dirty fix! This problem should be fixed by the creator of this thread.
PS: It also happens, when you're assignin transfer quotas to users, try to make the same as above, except you take $_POST instead of $_GET...
Neo
Verfasst: Sa 11.Dez, 2004 18:52
von Anonymous
i have same problem!
anyone know how to fix it?
Code: Alles auswählen
foreach($_GET as $strKey=>$strValue) {
$$strKey=$strValue;
}
where to put this?