Results 1 to 5 of 5

Thread: Rating system/?

  1. #1
    Join Date
    Dec 2007
    Posts
    14

    Default Rating system/?

    Is there way to set the rating system so person dont have to be register to rate a video?

  2. #2
    Join Date
    Dec 2007
    Posts
    11

    Default Re: Rating system/?

    i'm interesed in this also
    it was easy todo in 2.4 but in 2.6 its not so simple i guess

  3. #3
    Join Date
    Jul 2009
    Posts
    5

    Default

    Didn't find the answer.
    Can anybody help with it?

  4. #4
    Join Date
    Sep 2008
    Posts
    1,019

    Default

    Change the rating setting in the admin panel from "Once" to "Unlimited". Then, a user is not required to register to rate.
    vShare Solutions
    Custom vShare Modules and Services

    Now, your visitors can watch videos on your site using their mobile or tablet device with the Mobility Mod for vShare 2.8!

  5. #5

    Default

    Hi,

    Rating system for all users, do the following steps.

    1. Set 'Rate a video' to 'Unlimited' in Admin -> Site Settings -> Miscellaneous.

    2. Open file ajax/video_rating.php.

    Find and remove:
    Code:
    else if (! isset($_SESSION['UID']))
    {
        $err = $lang['invalid_user'];
    }
    then, find:
    Code:
    if (in_array($_SESSION['UID'], $voters ))
    {
        $video_voter_id_new = $video_voter_id;
    }
    else
    {
        $video_voter_id_new = $video_voter_id . $_SESSION['UID'] . '|';
    }
    replace with:
    Code:
    $video_voter_id_new = $video_voter_id;
    
    if (isset($_SESSION['UID']))
    {
        if (! in_array($_SESSION['UID'], $voters))
        {
            $video_voter_id_new = $video_voter_id . $_SESSION['UID'] . '|';
        }
    }
    If you can't get it fixed, open a support ticket at

    BuyScripts Helpdesk

    with your vshare admin and FTP login details.

    Thanks
    Buyscripts Team

Similar Threads

  1. video rating
    By Templar in forum Template Modifications
    Replies: 5
    Last Post: 03-20-2011, 08:06 PM
  2. Rating System not working on videos
    By twebb in forum Installation Support
    Replies: 11
    Last Post: 10-20-2008, 05:28 PM
  3. Stars Rating not showing on main page
    By Meghwar in forum Installation Support
    Replies: 3
    Last Post: 03-31-2008, 12:01 PM
  4. "server problem" on rating profile
    By leki in forum Fixed Bugs
    Replies: 0
    Last Post: 07-31-2007, 05:41 PM
  5. Issues with Rating and Commenting on a video
    By Pari in forum Fixed Bugs
    Replies: 16
    Last Post: 07-24-2007, 02:12 AM

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
  •