stat counters using htaccess

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • martinsc
    Too lazy to set a custom title
    • Jun 2005
    • 27047

    #1

    stat counters using htaccess

    i need a stats script/program that will collect detailed information with adding code to the htaccess file... (no installation on the server, no js or php code for each page...)

    can this be done?
    does something like this exist?
    Make Money
  • ClickBuster
    Confirmed User
    • May 2004
    • 210

    #2
    You can auto prepend .php files with the help of .htaccess
    Code:
    php_value auto_prepend_file /path/to/script.php
    That way you don't have to put
    Code:
    <?php
    require_ince "/path/to/script.php";
    ?>
    That will work if you find a decent PHP tracking software or something like that. If not, I'm always willing to code one
    -- ClickBuster
    -- ICQ# 263653704
    -- Email: clickbuster1 [-at-] gmail [-dot-] com

    Comment

    • martinsc
      Too lazy to set a custom title
      • Jun 2005
      • 27047

      #3
      Originally posted by ClickBuster
      You can auto prepend .php files with the help of .htaccess
      Code:
      php_value auto_prepend_file /path/to/script.php
      That way you don't have to put
      Code:
      <?php
      require_ince "/path/to/script.php";
      ?>
      That will work if you find a decent PHP tracking software or something like that. If not, I'm always willing to code one
      cool, i will try the auto_prepend_file
      Thanks
      Make Money

      Comment

      Working...