Categories no longer showing after migration. Please help

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

Categories no longer showing after migration. Please help

Beitrag von Anonymous »

Hello,

I've had my phpBB board running for quite some time with many mods including the DLMOD. The system used to run on SuSE 8.0 Pro with Apache 1. I just migrated away from 8.0 and I have gone to SuSE 9.0 Pro with Apache 2.

Everything I have checked works on the site except one thing. I cannot go deeper into the downloads area, other than the root. The location changes on the browser, with the proper category, but I just keep getting the root list.

Has anyone experienced any issues with SuSE 9.0, and Apache2? I find it really unusual that his is the only issue I have. The host name, is the same, the phpBB config was changed to mysql4 from 3, I've covered everything I can think of. If you wish to see what is happening, you can go to my site, BUT you must register to access the downloads area.

Any help would be greatly appreciated!

Regards,

Donald Polak

http://slovakia.homeip.net
Anonymous

Beitrag von Anonymous »

Did you mean about your download cat. page can shown but cannot get in the cat. page now?

When you use the update version of the MySQL or PHP .... This will happen

Try to do the following steps.

Open the downlowds.php
Find :

Code: Alles auswählen

// 
// Generate page 
// 
Add after

Code: Alles auswählen

$cat = $_GET["cat"]; 
$id = $_GET["id"]; 
$view = $_GET["view"];
 
Open the load.php
Find :

Code: Alles auswählen

//
// End session management
//
Add After

Code: Alles auswählen

$id = $_GET["id"]; 
Open admin/admin_dl_traffic_all_users.php
Find

Code: Alles auswählen

//
// Begin program
//
add after

Code: Alles auswählen

$x = $HTTP_POST_VARS['x'];
$traffic = $HTTP_POST_VARS['traffic'];
$function = $HTTP_POST_VARS['function'];
Open admin/admin_dl_traffic_single_users.php
Find

Code: Alles auswählen

//
// Begin program
//
add after

Code: Alles auswählen

$x = $HTTP_POST_VARS['x'];
$traffic = $HTTP_POST_VARS['user_traffic'];
$function = $HTTP_POST_VARS['function'];
Anonymous

Beitrag von Anonymous »

Outstanding!! I thank you VERY much for resolving this issue so fast!

Thank you Joe!

Regards,

Don
Anonymous

Beitrag von Anonymous »

Donald.Polak hat geschrieben:Outstanding!! I thank you VERY much for resolving this issue so fast!

Thank you Joe!

Regards,

Don
You're Welcome! Hope it is helpful for you. :wink:
Gesperrt