Not signed in (Sign In)

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

    •  
      CommentAuthorsidtheduck
    • CommentTimeMar 13th 2009
     
    whoopn,

    Open 'admin/plog-admin-functions.php' and look for the following code under the add_picture() function (should be around line 157-158):
    $thumbpath = generate_thumb($picture_path, $result['picture_id'],THUMB_SMALL);
    #$thumbpath = generate_thumb($picture_path, $result['picture_id'],THUMB_LARGE);

    and remove the '#' in front of the second line of code so it looks like this:
    $thumbpath = generate_thumb($picture_path, $result['picture_id'],THUMB_SMALL);
    $thumbpath = generate_thumb($picture_path, $result['picture_id'],THUMB_LARGE);


    That should make intermediate thumbs on upload now.
    •  
      CommentAuthorsidtheduck
    • CommentTimeMar 15th 2009
     
    whoopn,

    Why don't you just visit all of your albums and run the "View Slideshow" link and that will cycle through all of your pictures in that album and create the intermediate images.