Quote:
Originally Posted by MrGoodbyte
Hi there .. I've a (I guess) little problem:
I'm able to open the download-options using the vbulletin-options. Trying to open them using the button in the ACP-navbar failes. The button for editing the categories runs! What could be the error?
Thx for help ...

|
This wouldn't have been a problem if you had followed the instructions from the file "fixes 7 52 PM Aug 9 05.txt" ...
Code:
Find in admincp/index.php:
// ###### ELITECODERS DOWNLOAD HACK ######
construct_nav_option("Settings", 'downloadadmin.php?do=settings', '<br />');
construct_nav_option("Categories", 'downloadadmin.php?do=category', '<br />');
construct_nav_group("Downloads", '<hr />');
// ###### ELITECODERS DOWNLOAD HACK ######
Replace with:
// ###### ELITECODERS DOWNLOAD HACK ######
construct_nav_option("Settings", 'options.php?do=options&dogroup=ecdownloads', '<br />');
construct_nav_option("Categories", 'downloadadmin.php?do=category', '<br />');
construct_nav_group("Downloads", '<hr />');
// ###### ELITECODERS DOWNLOAD HACK ######