Quote:
Originally Posted by kentaurus
I have no dos2unix or fromdos command, I am on a windows server, not a unix/linux one. However, I found a way to solve it.
In the adminfunctions_hacklog.php, this line
$handle = fopen($file, "r");
I changed it to:
$handle = fopen($file, "rb");
to force the file to be open as a binary file. Then the install routine started working  That seems to be an issue for windows servers only.
|
Aha, so that's why! A windows server.... ah, yes....
Thanks for helping me resolve this. I've added the binary flag to that function in the zipfile in the first post's attachment, so that this shouldn't happen in the future anymore.