Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
Andrew  
#1 Posted : Tuesday, June 4, 2013 7:20:49 PM(UTC)
Andrew

Rank: Advanced Member

Groups: Member, Administration
Joined: 8/2/2003(UTC)
Posts: 876

Thanks: 2 times
Was thanked: 27 time(s) in 27 post(s)
Description

When uploading files to a PHP server using Flash uploader (for example, when you use HTML5/Flash uploader in IE or, say, Safari on Mac), these files are corrupted and unreadable.

The problem may occur if you have PHP 5.3 or earlier.

Cause

Most likely it means that Magic Quotes feature is enabled on your PHP server. When it is on, it replaces all special characters in all the incoming data with an appropriate escape sequense, therefore the file becomes corrupted.

Solution

You should disable Magic Quotes. To do it, set magic_quotes_gpc directive in your php.ini file to Off.

Why only Flash version affected?

You may wonder why HTML5, ActiveX and Java uploaders work fine. The reason is that Flash uploader sends files a bit differently. Instead of uploading them as files, it sends raw binary data. If magic quotes are enabled, raw binary data is processed while files are skipped. That's why only Flash uploader is affected.

Edited by user Tuesday, June 4, 2013 7:25:18 PM(UTC)  | Reason: Not specified

Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.