Node counter doesn't work
edhel - December 2, 2008 - 07:01
| Project: | Node breadcrumb |
| Version: | 6.x-1.0-beta3 |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | edhel |
| Status: | closed |
Jump to:
Description
subj
| Project: | Node breadcrumb |
| Version: | 6.x-1.0-beta3 |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | edhel |
| Status: | closed |
subj
#1
I think I'm seeing this... The statistic counter no longer counting after I set this up. Took me a while to figure out what happen
#2
#3
I believe i too have encountered this issue, but had not even considered Node Breadcrumbs Just taken a site fron d5.6 to d6.12 My first thought was it was all none "page" types but now realise Node Breadcrumbs are generated for affected pages.
One thing I did notice was that if you type the node/nid the counter did update but the node breadcrumb is still added , maybe a clue
#4
Forgot the obvious. Tried disabling Node Breadcrumbs and the counter started to work again
#5
I also have this problem. However, what it is actually doing is incrementing the view counter of the parent page linked by the breadcrumb.
For example, if I use the module to link the node "Game 1" to the parent "Game Reviews", for every refresh of node "Game 1" the counter for the node "Game Reviews" is incremented.
I have had occasions where the correnct counter has updated which have usually involved a login or logout but I can't reproduce that exactly.
#6
fixed in beta3
#7
The new version appears to cause another issue
After uploading, I lost the View Edit Revisions Tabs for nodes using Node Breadcrumb. reverting to the previous version resolved
#8
On further investigation i can tell you its this bit of code that makes the tabs dissapear
$add_active_class = variable_get('node_breadcrumb_add_active_class', FALSE);$menu_item = menu_link_load($mid);
menu_set_item($_GET['q'], $menu_item);
if ($add_active_class) {
$q = $_GET['q'];
$_GET['q'] = $menu_item['link_path'];
}
What it does is beyond me :)
#9
Add before line:
menu_set_item($_GET['q'], $menu_item);
These two line:
menu_local_tasks(0);
menu_local_tasks(1);
Fixed in dev-version (will be later at night).
#10
Automatically closed -- issue fixed for 2 weeks with no activity.