Quote:
Originally Posted by webchills
First of all thanks for this great mod.
I' m using 2.2.9 and everything is working fine, but I can't get the links in the navabr working properly.
I have renamed local_links to downloads as the mod is used for downloads only.
In the navbar for example under "Show" "New entries" ends up in a link like this:
downloads_search.php?action=find&catid=-8
The result is the message that you have insufficient rights to perform this operation. Even when you are logged in as Admin.
"Show" "New Ratings" ends up in a link like
downloads_search.php?action=find&catid=-13
Same result.
Any idea where these strange links with negative category numbers do come from and how to fix that?
All other links in the navbar (Add link, Category, Moderate, ...) are working fine by the way.
|
Have you renamed the top level scripts consistently with the way you have edited includes/local_links_init.php?
The navbar is pointing towards downloads_search.php because you've set:
Code:
define('SEARCH_SCRIPT', 'downloads_search');
in includes/local_links_init.php
Script local_links_search.php should have been renamed downloads_script.php, etc, matching these definitions.
The negative category ids are used to specify special searches, i.e. -8 = new entries, etc
Let me know if I'm missing the point