Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<VirtualHost *:80>
        ServerName partner.net
        DocumentRoot "/www/production/partner.net/"

        LimitRequestBody 0
</VirtualHost>


Or you cam can simply put below values at .htaccess that located on the root of the PHP-based web site.

Code Block
php_value post_max_size 0
php_value upload_max_filesize 0
php_value max_file_uploads 100
php_value max_input_time 3600
php_value max_execution_time 3600
LimitRequestBody 0

...