anyone getting a win32 system to send attachments
corrently? jpegs, zips and the like seem to come
through unreadable when sent from NOCC...it reads them
fine
It could be a setting in the php.ini I am just double
checking though everything looks good in there.
Logged In: YES
user_id=29685
What version of PHP do you run ? Does this occur with latest
development versions of PHP available here :
http://www.php4win.de/
There were known PHP bugs with corrupt file uploads.
See for example:
http://www.php.net/bugs.php?id=9336
http://www.php.net/bugs.php?id=9298
http://www.php.net/bugs.php?id=9677
Please tell us if it's fixed and what version you previously
run so that we can add this to the FAQ
Logged In: NO
Just updated to the latest from that URL.
PHP Version 4.0.5RC1
It is still doing the same thing.
I even set a temp and session directory in php.ini
only extension enabled is IMAP is the another that should
be enabled maybe?
Logged In: YES
user_id=82865
The problem has been corrected in CVS version.
Please try latest snapshot available at :
http://nocc.sourceforge.net/download/nocc-dev.tar.gz
or
http://nocc.sourceforge.net/download/nocc-dev.zip
and tell me if the bug is still present
Logged In: YES
user_id=29685
The development snapshot should be fine tomorrow or tonight.
If you want to try the fix ASAP, modify the following line
in send.php:
line 83 -> $fp = fopen($$file_tmp, "r");
add a "b":
$fp = fopen($$file_tmp, "rb");
Logged In: NO
the manual fix worked great