Page 1 of 1

Date incorrect after upload

Posted: Thu Aug 12, 2010 5:28 pm
by sorr
When I upload any file via jdiskexplorer, the uploaded file shows a date of 1/15/1970. I am using explorer.php/process.php on an iis6 server using fastcgi. Please give me a clue as to why this is happening. thank you.

Re: Date incorrect after upload

Posted: Sat Aug 14, 2010 8:58 am
by support
Open explorer.php and search for:
$date = fileatime($dirStr."/".$file);
and add:
$date = $date * 1000;

Does it help?

Re: Date incorrect after upload

Posted: Wed Sep 08, 2010 9:51 pm
by sorr
That worked perfectly. Thank you very much!