Closed (duplicate)
Project:
Favorite Nodes
Version:
5.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
4 Jan 2008 at 22:15 UTC
Updated:
1 Feb 2008 at 11:18 UTC
I've enabled the module and assigned access to the appropriate users, but I am not able to administer favorite Nodes. It does not show up on my admin screen at all. Any help with getting this to show up is much appreciated :)
Comments
Comment #1
evyawebsites commentedi have the same problem with it, please help
Comment #2
TheGecko commentedSame problem here.
You can get to the settings via /admin/settings/favorite_nodes (you can see the paths for the module in the favorite_nodes_menu($may_cache) function in favorite_nodes.module)
but having said that I am having trouble getting any of the functionality working
Comment #3
ggr88 commentedI also cannot see under administer, but can get to /admin/settings/favorite_nodes, and seems to be working after setup.
Gareth
Comment #4
wilson98 commentedhere's the solution.
1. open the file favorite_nodes.module, find the function favorite_nodes_menu($may_cache), you're see the code like this:
$items[] = array(
'title' => 'Favorite node settings',
'path' => 'admin/settings/favorite_nodes',
'description' => 'Settings for favourite nodes',
'callback' => 'drupal_get_form',
'callback arguments' => 'favorite_nodes_settings',
'type' => MENU_CALLBACK,
'access' => user_access(FAVORITE_NODES_PERM_ADMINISTER),
);
2. replace the 'type' value MENU_CALLBACK with MENU_NORMAL_ITEM,
3. clear your cache_menu in your db,
4. done. now you should see the menu 'favorite nodes setting' under admin/settings menu.
Comment #5
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #6
guldi commentedhttp://drupal.org/node/206071