vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Hit counter for links.... (https://vborg.vbsupport.ru/showthread.php?t=151693)

imk 07-08-2007 04:23 PM

Hit counter for links....
 
is there a modification or can somone find or suggest a way to do this,

i want to start up a rap directory and want to have profiles on rap sites....so i want a counter that will count the amount of clicks going from my site to each other rap site...anyone?

????????????

Andrew Green 07-10-2007 02:13 PM

quick and dirty version:

Setup a table in your database:

Code:

create table linklog (linklogid integer not null auto_increment primary key, name text, link text, description text)
Create a file to log and redirect clicks:

link.php
Code:

<?php

if($_GET['goto'])
{
        require_once('./global.php');
        global $db;
       
        $goto = $_GET['goto'];
       
        $db->query("UPDATE linklog SET linkcount=linkcount+1 WHERE link='$goto'");       

        header("Location: $goto");
}
?>

then instead of linking to "http://google.com", link to "link.php?goto=http://google.com"

To pull a count out of the database:

In your directory file you would do something like this:

Code:

        $output = "";
        $linklist = $db->query_read("SELECT * FROM linklog");
        while($link = $linklist)
        {
                $url = $link['link'];
                $count = $link['linkcount'];
                $description = $link['description'];
                $name = $link['name'];
                $output .= "<p><a href='$url'>$name</a> ($count) - $description</p>";
        }



All times are GMT. The time now is 03:22 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00926 seconds
  • Memory Usage 1,716KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete