Not signed in (Sign In)

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

    • CommentAuthorosmonsat
    • CommentTimeApr 29th 2008 edited
     
    Quick question, the latest-images.php script works great but how would you invoke it from within a html page?
    •  
      CommentAuthorkimparsell
    • CommentTimeApr 30th 2008
     
    Normally php includes are not parsed within a page with a .html extension. You will need to add the following lines of code to your .htaccess file in order to tell your server to have it parse .html pages as php:

    AddType application/x-httpd-php .html
    AddType application/x-httpd-php .htm
    •  
      CommentAuthorDeeJayOdie
    • CommentTimeMay 17th 2008
     
    If anyone wants to only show the latest x-images from a specific collection instead of the whole gallery just change this:
    $q = "SELECT * from plogger_pictures order by `id` DESC LIMIT $amount";
    with:
    $q = "SELECT * from plogger_pictures WHERE `parent_collection` = 2 order by `id` DESC LIMIT $amount";
    and change the `parent_collection` = X to match the number of the collection you want the pictures to be displayed from.
    • CommentAuthorpandianbe
    • CommentTimeJun 20th 2008
     
    Hi All,

    Thanks for this Post.

    Here i need to get the Cut free URL as output is it Possible?

    and also Please help me to get the Random and Mostly Viewed Pictures with Code.

    Thanks in Advance :-)
  1.  
    How would I include the image title below the thumbnail?