Increase PHP’s File Upload Limit Using php.ini
The file upload size limit is usually set pretty low by shared hosting providers. Why? To save bandwidth, keep the server moving quickly, and think about it -- how many customers really need a large upload limit? If you do need to increase the maximum upload limit, all you need to do is place the following code snippet in your php.ini file:
file_uploads = On
upload_max_filesize = 10M //needs to be in {x}M format
Note that not all hosting providers allow customers to increase the file upload limit. Take that into consideration when purchasing your customer's web hosting.
Google Plus provides loads of inspiration for front-end developers, especially when it comes to the CSS and JavaScript wonders they create. Last year I duplicated their incredible PhotoStack effect with both MooTools and pure CSS; this time I'm going to duplicate...
Today we get to play amazing games on our super powered game consoles, PCs, VR headsets, and even mobile devices. While I enjoy playing new games these days, I do long for the retro gaming systems I had when I was a kid: the original Nintendo...
Back when I created client websites, one of the many things that frustrated me was the initial design handoff. It would always go like this:
Work hard to incorporate client's ideas, dream up awesome design.
Create said design, using Lorem Ipsum text
Send initial design concept to the client...
At last week's Mozilla WebDev Offsite, we all spent half of the last day hacking on our future Mozilla Marketplace app. One mobile app that recently got a lot of attention was Instagram, which sold to Facebook for the bat shit crazy price of one...
Thanks, I’m trying to figure out how to make it so music can be played on my blog as soon as others click on. Thanks for the updates.
or just use:
that will allow uploads and set maximum size to 500mb
Sorry it is not working… When i changed this, after executing in IE, it throws a javascript error with restriction of 8MB. and in mozilla and chrome, it restricts 2MB file.. help me
Maybe another solution would be with a .htaccess file with something like:
php_value memory_limit 36M
php_value post_max_size 36M
php_value upload_max_filesize 32M
Hey Rafael,
I have no idea how to locate the php.ini file. Is this in my local hard drive? I use a macbook Pro. No luck so far. Can you please help out a noob? thanks in advance :)
If you increase the upload_max_filesize parameter in php.ini, you have to increase the maximum size of POST data as well. That includes the file upload and other form data. The parameter name is post_max_size.
is there any limit in
upload_max_filesize
? i mean 64M or 128M etcYou say php_value memory_limit 36M and post_max_size 36M, it’s ok but upload max filesize 32M. Good I Think It’s Better System.