forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: Takako on December 02, 2008, 02:52:53 pm

Title: [Solved]: How do we enable Admin view count?
Post by: Takako on December 02, 2008, 02:52:53 pm
I've tried to search for a solution, but couldn't find anything.

I've read enough to understand that Admin views don't increase the "Displayed" / "Views" counter, but I was wondering if there was any way that all hits including guest, user, admin and uploader are all counted?
Title: Re: How do we enable Admin view count?
Post by: Nibbler on December 02, 2008, 02:59:18 pm
Edit theme_html_picture() in your custom theme.php.

Code: [Select]
    // Add 1 to hit counter
    if (!USER_IS_ADMIN && !in_array($pid, $USER['liv']) && isset($_COOKIE[$CONFIG['cookie_name'] . '_data'])) {
        add_hit($pid);
        if (count($USER['liv']) > 4) array_shift($USER['liv']);
        array_push($USER['liv'], $pid);
    }

Remove the checks like this:

Code: [Select]
    // Add 1 to hit counter
    //if (!USER_IS_ADMIN && !in_array($pid, $USER['liv']) && isset($_COOKIE[$CONFIG['cookie_name'] . '_data'])) {
        add_hit($pid);
        if (count($USER['liv']) > 4) array_shift($USER['liv']);
        array_push($USER['liv'], $pid);
    //}
Title: Re: How do we enable Admin view count?
Post by: Takako on December 02, 2008, 04:09:06 pm
Again, Thankyou sincerely for your quick response~

I applied the change, and everything works like a charm now!!!