I am getting an http 500 error when using uploadify on Ubuntu.
The server has write permissions on the folder.
Same code works on windows local machine.

You can see the html and the actual error here: beta DOT my-calendar DOT gr/calendar/upload-photos

link|improve this question

It seems that the server is throwing a HTTP 500 error. You sure that you have set the write permissions ? – Farhan Jan 22 '11 at 10:05
feedback

7 Answers

up vote 1 down vote accepted

I think you should look at your webserver's log for explanations of the 500 (Internal Server Error) error. On Ubuntu this log can be found at /var/log/apache2/error.log.

link|improve this answer
There is nothing on the error.log. Actually the 500 error is thrown by the Uploadify itself, I am not sure if it is representative of a server 500 error – Dimitris Baltas Jan 17 '11 at 21:59
1  
Uhm. Then you should probably contact the authors of Uploadify and seek help from them. – ulidtko Jan 17 '11 at 22:50
feedback

As far as I could see it's Zend Framework's error, not uploadify. It returns 500 even when trying to upload using plain input type="file"

link|improve this answer
that is not correct. the production site is working with an input type=file with no problem on the same configuration and permissions. – Dimitris Baltas Feb 4 '11 at 21:14
this is weird, because it gave me 500 when I injected input type=file into the page you mentioned in the question – German Rumm Feb 4 '11 at 21:59
feedback

It is possible that the Apache / Zend server on the Ubuntu system has been confined with the AppArmor mandatory access control mechanism; perhaps the server is not allowed to write files due to the AppArmor policy, even if the standard Unix discretionary access control policy would otherwise allow the file write.

In a root shell, run aa-status to see which profiles are loaded, and which programs currently running are confined. Perhaps your Apache is confined, perhaps Zend is confined. (I'm pretty unfamiliar with zend, so if it is an Apache module, just check for Apache. :)

link|improve this answer
hmmm, after running aa-status i don't see the httpd apache process nor any zend related stuff. 0 profiles in complaint mode. – Dimitris Baltas Feb 4 '11 at 21:10
feedback

Have you looked at the upload_max_filesize directive?

I'm not an apache veteran, but I know on nginx, by default it ships prohibiting files greater than 1mb being uploaded.

http://php-mysql-articles.blogspot.com/2007/10/change-upload-file-size-apache.html

I'm not entirely sure if that helps, but you could give it a try?

link|improve this answer
feedback

I have just posted my comment at

"http error" when using Uploadify plugin for JQuery

link|improve this answer
without any success i added the following "php_flag SecFilterEngine off" AND "php_flag SecFilterScanPOST off" at the "Ifmodule mod_php5.c" sectionof the .htaccess if that's what you meant. – Dimitris Baltas Feb 4 '11 at 21:04
feedback

In case there was a usage of 3rd party libraries (e.g. GD for image manipulation using PHP) in the method handling POST on server side, please make sure that you have appropriate extensions loaded (e.g. yum install php-gd for RHEL/CENTOS).

link|improve this answer
feedback

Check with phpinfo() if mod_security is enabled. If so, that's a probable cause, you can disable it in a .htaccess file:

SecFilterEngine Off
SecFilterScanPOST Off
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.