Author Topic: Count incoming hits in multiple pages  (Read 16131 times)

0 Members and 1 Guest are viewing this topic.

Offline Cristian

  • Newbie
  • *
  • Posts: 30
    • View Profile
Count incoming hits in multiple pages
« on: December 03, 2008, 11:10:27 AM »
Hi!

This script track hits from multiple pages? Can i place the ssi_in in all my indecx and category pages?
Regards
Cristian

Offline Renaldo

  • Newbie
  • *
  • Posts: 13
    • View Profile
Re: Count incoming hits in multiple pages
« Reply #1 on: December 03, 2008, 11:48:21 AM »
In Case you have multiple pages, you can use :

Index Page :   <?php include('./tp/ssi_in.php'); ?>
Archive Page : <?php include('../../tp/ssi_in.php'); ?>

(IF you use the "virtual includes", just use this)

~ TheBeginning,

Offline Cristian

  • Newbie
  • *
  • Posts: 30
    • View Profile
Re: Count incoming hits in multiple pages
« Reply #2 on: December 03, 2008, 11:57:22 AM »
I do that, just wondering if the script is able to avoid tracking hits from ym own pages twice.
Regards
Cristian

Offline Mileizdoboja

  • Jr. Member
  • **
  • Posts: 71
    • View Profile
Re: Count incoming hits in multiple pages
« Reply #3 on: December 03, 2008, 12:05:25 PM »
In Case you have multiple pages, you can use :

Index Page :   <?php include('./tp/ssi_in.php'); ?>
Archive Page : <?php include('../../tp/ssi_in.php'); ?>

(IF you use the "virtual includes", just use this)

~ TheBeginning,
That's not correct,it need to be <?php virtual("/tp/ssi_in.php")?> if output file is in php format.Include wont work.(atleast it didnt work at me)
« Last Edit: December 03, 2008, 12:09:16 PM by Mileizdoboja »

Offline Renaldo

  • Newbie
  • *
  • Posts: 13
    • View Profile
Re: Count incoming hits in multiple pages
« Reply #4 on: December 03, 2008, 12:43:37 PM »
That's not correct,it need to be <?php virtual("/tp/ssi_in.php")?> if output file is in php format.Include wont work.(atleast it didnt work at me)

This is all depent your server configuration,
The include i posted works by me,
thats why i said : (IF you use the "virtual includes", just use this)  :)

~ Renaldo,

Offline ip0li

  • miSearkXD
  • Administrator
  • Hero Member
  • *****
  • Posts: 1952
    • View Profile
    • Premier Сasual Dating Real-life Girls
Re: Count incoming hits in multiple pages
« Reply #5 on: December 03, 2008, 02:09:57 PM »
Multipage tracking works...so for example trade.com sends surfer to your index with include, and then that surfer goes to category page also with include it will credit that trade for clicks, your site won't be shown in referrers etc etc :)  We setuped it so it's by default done for multi-page sites ;)

Offline Cristian

  • Newbie
  • *
  • Posts: 30
    • View Profile
Re: Count incoming hits in multiple pages
« Reply #6 on: December 03, 2008, 02:15:42 PM »
Multipage tracking works...so for example trade.com sends surfer to your index with include, and then that surfer goes to category page also with include it will credit that trade for clicks, your site won't be shown in referrers etc etc :)  We setuped it so it's by default done for multi-page sites ;)

sweet
Regards
Cristian