• Categories
    • PHP
    • phpMyAdmin
    • PHPMailer
    • FFMpeg
    • PHPEXcel
    • PHPDoc
    • PHPUnit
    • CakePHP
    • CakePHP 2.0
    • Cake PHP 2.1
    • CakePHP Model
    • Facebook PHP SDK
    • composer-php
    • PHP 7
    • PHP GD
    All Categories
  • About

How to increase the PHP upload limits [duplicate]

phpmysqlwamp


PHP Snippet 1:

memory_limit = 99M
max_execution_time = 300
upload_max_filesize = 20M
post_max_size = 24M

PHP Snippet 2:

upload_max_filesize = 10M
post_max_size = 10M

PHP Snippet 3:

upload_max_filesize = 120M
post_max_size = 120M
max_execution_time = 200
max_input_time = 200

PHP Snippet 4:

ini_set("upload_max_filesize","120M");

PHP Snippet 5:

php_value upload_max_filesize 120M

PHP Snippet 6:

upload_max_filesize = 64M
post_max_size = 64M

Related Snippets

Group data in a multidimensional array based on two columns

How to upload mpdf file after generating to s3 bucket in php

"Mixed content blocked" when running an HTTP AJAX operation in an HTTPS page

PHP array, move keys and values to new array, but mix it up

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'posts.post' doesn't exist

Mysqli multi query error

Parsing JSON File to array in PHP

Android Volley getParams() method not getting called for JsonObjectRequest

Normalize DateInterval in PHP

How do I get friend list from Friends table with counts of friends of my friends

Auto increment id JSON

Select option from dropdown menu with PHP and mySql

How to skip cart page on woocomerce for certain products only?

Laravel Collections. Is there some kind of assertStructure method?

"Notice: Undefined variable", "Notice: Undefined index", "Warning: Undefined array key", and "Notice: Undefined offset" using PHP

About Contact Privacy policy Terms and conditions