Not signed in (Sign In)

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

    • CommentAuthorblackst5
    • CommentTimeOct 13th 2005
     
    I am getting this error when submitting photos through the Import utility:

    Failed: $AvailableImageOutputFormats = array(text;wbmp;gif;png;jpeg) in file "phpthumb.class.php" on line 519 $this->thumbnailFormat set to $this->config_output_format "jpeg" ......

    Any ideas on what is going on and how I can fix the script? Thanks!
    • CommentAuthorjack
    • CommentTimeOct 14th 2005
     
    What are your images called? Extension used? Looks to me as if the program doesn't recognize what kind of images you are using.
    •  
      CommentAuthormike
    • CommentTimeOct 14th 2005
     
    Line 75 of plog-functions.php

    $phpThumb->src = $source_file_name;

    Try changing that to:

    $phpThumb->setSourceFileName($source_file_name);
    • CommentAuthorblackst5
    • CommentTimeOct 15th 2005
     
    They are all .jpg files. I've also already changed the plog-funcitons.php file already.

    Any other ideas?
    • CommentAuthorvoidless
    • CommentTimeOct 18th 2005
     
    I'm getting the very same error message.
    Strange thing - the "$AvailableImageOutputFormats = array(text;wbmp;gif;png;jpeg)" tells about jpeg not jpg output format so I tried to rename the photos to have .jpeg extension, but after that Plogger no longer shows them in the Import dialog.
    •  
      CommentAuthormike
    • CommentTimeOct 18th 2005
     
    Does your server have PHP short tags on?
    • CommentAuthorvoidless
    • CommentTimeOct 18th 2005
     
    If you mean ASP tags they're off.

    The $phpThumb->src = $source_file_name; for $phpThumb->setSourceFileName($source_file_name); trick worked for me, the images were imported but no thumbnails were generated.
    Also the /thumbs directory is empty

    But I got no error message or warning, strange