Hello CK Team,
I found an error in the new ckfinder asp version.
If i want to upload a Jpg, I get the error "The uploaded file is corrupt".
The error is only on 64bit webserver with 64bit persits object.
In file "ckfinder/core/connector/asp/utils/image.asp"Line "409" (Class CKFinder_Utils_ImageHandler_Persits) (Function versionNumber) you want to make a long but in 64bit you must replace in the string "data" the string "(64-bit)" too
Here the corrected function:
Public Function versionNumber(obj)
Dim data
data = obj.version
data = Replace(data, ".", "")
data = Replace(data, "(64-bit)", "")
versionNumber = CLng(trim(data))
End Function
best regards
Demian
Thank you very much for the
Thank you very much for the report and the fix :-)
I've added it and it will be included in the next release, whenever it happens.