Results 1 to 10 of 25

Thread: Point System

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default Re: Point System

    This is easy just track incomming ip adresses:

    Code:
    $_SERVER['REMOTE_ADDR']
    and referers:

    Code:
    $_SERVER['HTTP_REFERER'];
    Update the database on unique hits and add a point to that vid

    Also to prevent cheating add a timestamp:

    Code:
      //** Make sure it's been 24 hours since they last visited**//
    
     $timestamp = //database row here;
      $current_timestamp = time();
      if($timestamp and (($timestamp + 86400) < $current_timestamp))
      {
    //query here
      }
      elseif(!$timestamp)
      {
    //query here
      }
    The rest is preference

  2. #2
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default

    You know...now that vShare is opened up, a lot of the things on these old wish lists can finally come true! w00t!
    If it's not fun, stop doing it!

  3. #3

    Default

    Im using a rewards system for my site.
    When a user is logged in and surfs around a bit, uploads vids, comments etc. They get a free HD video based on what categories they have most viewed

  4. #4
    Join Date
    Jan 2008
    Posts
    216

    Default

    If that mod will be created, I'll buy it! ;)

Similar Threads

  1. Rating system/?
    By k3lvin in forum Template Modifications
    Replies: 4
    Last Post: 04-02-2011, 04:49 AM
  2. Plugin System
    By nitramf in forum Feature Requests
    Replies: 1
    Last Post: 06-16-2009, 06:19 PM
  3. [add-on] Advert system - Only $15!
    By pepio in forum Template Modifications
    Replies: 28
    Last Post: 07-20-2008, 04:28 PM
  4. Link Point Payment System
    By wajdi in forum Sales Questions
    Replies: 0
    Last Post: 02-19-2008, 08:12 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •