Not signed in (Sign In)

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

    • CommentAuthorBojhan
    • CommentTimeMay 7th 2008
     
    Hello,

    When I try to import trough ftp, it gives the following errors :

    Warning: chmod() [function.chmod]: Operation not permitted in ../admin/plog-admin-functions.php on line 100

    Warning: fread() [function.fread]: Length parameter must be greater than 0. in ../foto/lib/exifer1_5/makers/olympus.php on line 155

    I dont really see where the first error is comming from as it seems I have set chmod right to all directories, though the second problem seems to be the exirfer of olympus that is bugging. Any tips?

    Regards,

    Bojhan
    • CommentAuthorDavidK
    • CommentTimeMay 9th 2008
     
    Hey,

    I was checking plogger out and also had the same error, while they are mostly Warnings it really won't affect anything because you can still see the uploaded pictures already imported. You can omit the messages by editing the following files:

    admin/plog-admin-functions.php (line 100)

    $res = chmod($final_fqfn, 0755);

    add

    $res = @chmod($final_fqfn, 0755);

    It will omit warning messages.