Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorlrd1
    • CommentTimeSep 6th 2008 edited
     
    Hi,

    i need to see how many photos in total i have in a collection. It shows me i have 170 albums in my collection, but doesn't give the total for how many photos in all those albums i.e. the collection.

    How can i see this?

    I need to know so i can compare the amount of photos on my hard drive with how many are in the gallery so i know they are all there.
    •  
      CommentAuthorkimparsell
    • CommentTimeSep 6th 2008
     
    Hi lrd1 -

    In the admin folder, there is a file called plog-manage.php. Open it in a plain text editor, and look for the following:

    /* if ($level == "collections") { // display some high level statistics on the main page.
    $output .= '<p class="highlight">You have a total of <strong>'. count_pictures().'</strong> images within <strong>'.count_albums() .'</strong> album(s). Users have posted <strong>'. count_comments().'</strong> comment(s) to your gallery</p>'; } */

    Change it to the following:
    if ($level == "collections") { // display some high level statistics on the main page.
    $output .= '<p class="highlight">You have a total of <strong>'. count_pictures().'</strong> images within <strong>'.count_albums() .'</strong> album(s). Users have posted <strong>'. count_comments().'</strong> comment(s) to your gallery</p>'; }

    Save your changes, then upload it to your web server, overwriting the existing plog-manage.php file.

    Log into your gallery admin and go to the Manage tab. There should now be a line at the top that looks like this:

    You have a total of xxx images within xxx albums. Users have posted xxx comment(s) to your gallery.

    That gives you the total number of images you currently have in your gallery.
    Thankful People: lrd1, sgsuneel
    • CommentAuthorlrd1
    • CommentTimeSep 6th 2008
     
    Thanks!
    • CommentAuthorPieperLy
    • CommentTimeSep 7th 2008
     
    he, it's cool. thanks

    uwe
    •  
      CommentAuthorRageRacer
    • CommentTimeDec 22nd 2008
     
    How could you add this (or simalar) to the front page of the gallery so vistors can see the statistics?