View Single Post
  #1  
Old 8th July 2012, 21:31
ibanez ibanez is offline
Member
 
Join Date: Jun 2012
P2P
Posts: 9
Default Open the tracker for guest and crawler
Hi,

As you know open tracker isn't verry open, it show only a login box for guest and crawler, and that is verry bad for SEO.


to open your open tracker

go to library/Main.php

and find and comment the following lines :

PHP Code:
   if (USER_ID) {
            if (
$this->data['url']['application'] == "news" || $this->data['url']['application'] == "admin")
                
$tpl->loadFile("template_sidebar.php");
            else
                
$tpl->loadFile("template.php");
        }
        if (!
USER_ID && !$this->isAllowed())
            
header("location: " page("user""login"));

        if (!
USER_ID && $this->isAllowed()) {
            
$tpl->loadFile("login.php");
        } 

add after


PHP Code:
if ($this->data['url']['application'] == "news" || $this->data['url']['application'] == "admin")
                
$tpl->loadFile("template_sidebar.php");
            else
                
$tpl->loadFile("template.php");
        } 

hope that an option will be in future verssion of our favorite tracker script.

enjoy
Reply With Quote
The Following User Says Thank You to ibanez For This Useful Post:
firefly007 (12th August 2012)