Free Adult Tube-Video Script Forum
Help With Crawltrack - Printable Version

+- Free Adult Tube-Video Script Forum (http://freeadultscript.com/forum)
+-- Forum: My Category (/forumdisplay.php?fid=1)
+--- Forum: General (/forumdisplay.php?fid=2)
+--- Thread: Help With Crawltrack (/showthread.php?tid=7)



Help With Crawltrack - egm1947 - 19-03-2010 11:40 PM

I use Crawltrack to track my visitors. (http://www.crawltrack.net)

I'm unsure where to put the code into your script. This is info and code.

Code:
How to use the CrawlTrack tag:

    * The CrawlTrack tag is a php file, you have to insert it in a .php page.
    * The CrawlTrack tags have to be between <?php and ?> tags, if there is no such tags on your page, you have to add them before and after the CrawlTrack tag.
    * If your site is not using .php pages, see documentation on www.crawltrack.net.
    * For the best anti-hacking protection, have the CrawlTrack tag as the first thing in your page just after <?php.
    * If you are using any sort of content management script (discussion board, blog, gallery, CMS etc.), have a look on www.crawltrack.net/doccms.php to find the best place to insert the tag.
    * The CrawlTrack tag will give absolutly no visible output on your pages (even in the source code).
    * If you would like to support CrawlTrack and see the logo with a link to www.crawltrack.net, you will find logo models below that you can put at any place on your pages.
    * For any other questions, see the documentation on www.crawltrack.net or use the support forum on the same site.

Standard tag for a site hosted on the same server as Crawltrack.

Code:
$crawltsite=1;
require_once("/home/virginfr/public_html/crawltrack/crawltrack.php");


I would also like to know how to put tags into the footer, like a counter.


I appreciate the help!!


RE: Help With Crawltrack - admin - 20-03-2010 12:27 AM

you can add it from admin panel under Free HTML Area

add it footer free html are
as exapmple

PHP Code:
<center>my footer latters <br>
<?
$crawltsite=1;
require_once(
"/home/virginfr/public_html/crawltrack/crawltrack.php");
?>
</center> 


you can run php,javascript and html codes at Free HTML areas


RE: Help With Crawltrack - egm1947 - 20-03-2010 01:22 AM

(20-03-2010 12:27 AM)admin Wrote:  you can add it from admin panel under Free HTML Area

add it footer free html are
as exapmple

PHP Code:
<center>my footer latters <br>
<?
$crawltsite=1;
require_once(
"/home/virginfr/public_html/crawltrack/crawltrack.php");
?>
</center> 


you can run php,javascript and html codes at Free HTML areas

Thank you