english response - load.php and Info don't work

Enthält archivierte Beiträge von Hotschi's Board zum Download MOD.
Posten ist hier nicht möglich, bitte das Supportforum dafür verwenden!
Gesperrt
Anonymous

english response - load.php and Info don't work

Beitrag 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?
Anonymous

Beitrag 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
Anonymous

Beitrag 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?
Gesperrt