The reason that mod_security rejects upload from UU is because there is a discrepency in the HTTP POST header that UU transmits to the server which has yet to be resolved.
The work around for this problem is as follows:
Disable mod_security for the folder in which the script you are uploading to resides in
Place a .htaccess file with the following contents in that same folder:
- Code: Select all
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>