Uncached templates: vbseo_ls_icon (1) it appears on the every misc.php?do=XXX site. For example http://www.2-wheel-planet.de/misc.php?do=cybtpimx
This is a discussion on Uncached templates: vbseo_ls_icon (1) within the Bug Reporting forums, part of the vBSEO SEO Plugin category; Uncached templates: vbseo_ls_icon (1) it appears on the every misc.php?do=XXX site. For example http://www.2-wheel-planet.de/misc.php?do=cybtpimx...
Uncached templates: vbseo_ls_icon (1) it appears on the every misc.php?do=XXX site. For example http://www.2-wheel-planet.de/misc.php?do=cybtpimx
Hello,
this is related to Livestats add-on, not to vBSEO. We will check and correct this issue.
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Are you running the latest version of Livestats? It should work correctly.
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
If LiveStats for Google Analytics 1.0 RC1 is the latest version?
Hello,
you should modify cache_templates LiveStats's plugin to correct that, find:
add above:PHP Code:$globaltemplates[] = 'vbseo_ls_script';
PHP Code:$globaltemplates[] = 'vbseo_ls_icon';
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Folgendes steht dort drinnen:
Code:if(THIS_SCRIPT == 'misc') { $globaltemplates[] = 'vbseo_ls_script'; $globaltemplates[] = 'vbseo_ls_load'; } else $globaltemplates[] = 'vbseo_ls_icon';
Ok, is the modification working correctly for you?
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Sorry, you understood me wrong
if(THIS_SCRIPT == 'misc')
{
$globaltemplates[] = 'vbseo_ls_script';
$globaltemplates[] = 'vbseo_ls_load';
}
else
$globaltemplates[] = 'vbseo_ls_icon';
This code was in the plugin before your modification.
After adding your correction it is working, well.
I only think this should be like this:
if(THIS_SCRIPT == 'misc')
{
$globaltemplates[] = 'vbseo_ls_icon';
$globaltemplates[] = 'vbseo_ls_script';
$globaltemplates[] = 'vbseo_ls_load';
}
???
Yes, that's right.
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Okay, than I delete the else conditon.
Thank you.
Okay, the second version doesn´t work.
With that version this template is at the forumhome uncached![]()
You should not remove else condition, just add a new line, as described above.
Complete code would be:
PHP Code:if(THIS_SCRIPT == 'misc')
{
$globaltemplates[] = 'vbseo_ls_icon';
$globaltemplates[] = 'vbseo_ls_script';
$globaltemplates[] = 'vbseo_ls_load';
}
else
$globaltemplates[] = 'vbseo_ls_icon';
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!