Improper File Permissions (CHMOD Fix)
Brought to you by:
e4c5
I'm not positive that this is a universal problem (or
solution). On my hosted account on a Unix box, I was
unable to modify the files that were uploaded by Mega
Upload. This turned out to be a permissions problem (a
chmod / chown problem). For me, this permissions
problem was solved by the following modification:
Look for the following line:
$fsize =(-s $fh);
Above that line, insert this code:
$jmode = 0644;
chmod ($jmode, "$tmp_filename");
This gives explicit read/write permissions.
Logged In: NO
thanks for the help! I tried to copy the file from /tmp,
but always shows de message that there weren't permission
to copy