Download 500 HTTP Error on Linux

I get an http 500 error when using uploadify on Ubuntu.
The server has write permissions to the folder.
The same code runs on a local Windows machine.

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

+3
source share
7 answers

I think you should look at the log of your web server for an explanation of the 500 (Internal Server Error) error. On Ubuntu, this journal can be found at /var/log/apache2/error.log.

+1
source

As far as I can see, this is a Zend Framework error, not an addition. It returns 500 even when trying to load with a simpleinput type="file"

0
source

, Apache/Zend Ubuntu AppArmor; , - AppArmor, Unix .

aa-status, , . , Apache , , Zend . ( zend, , Apache, Apache.:)

0

If you use third-party libraries (for example, GD for manipulating images using PHP) in the server-side POST processing method, make sure that you have the appropriate extensions installed (for example, yum install php-gdfor RHEL / CENTOS).

0
source

Check with phpinfo () if mod_security is enabled. If this is the case, then the probable reason is that you can disable it in the .htaccess file:

SecFilterEngine Off
SecFilterScanPOST Off
0
source

Source: https://habr.com/ru/post/1785603/


All Articles