Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a website hosted on a PC I have no access to. I have an upload form allowing people to upload mp3 files up to 30mb big. My server side script is done in PHP

Every time I try and upload a file I receive a error claiming the file exceeds the max size allowed, so I need to increase the size. My research on the web suggested changing the .htaccess file which I do not have access to so thats won't work. Others suggested that I add a cutom php.ini file to my root which did not work. Any other suggestions?

share|improve this question

4 Answers

up vote 35 down vote accepted

You need to set the value of upload_max_filesize and post_max_size in your php.ini :

; Maximum allowed size for uploaded files.
upload_max_filesize = 40M

; Must be greater than or equal to upload_max_filesize
post_max_size = 40M

If you can't change your php.ini, you're out of luck. You cannot change these values at run-time; uploads of file larger than the value specified in php.ini will have failed by the time execution reaches your call to ini_set.

See the Description of core php.ini directives.

share|improve this answer
do you perhaps know the default route that the php.ini file is stored? – Yo Momma Feb 2 '10 at 14:07
On Linux, it's usually in /etc/php/ or something along those lines. If you're on a shared server, you're out of luck unless your hosting provider is generous enough to provide a per-user php.ini file. – Johannes Gorset Feb 2 '10 at 14:10
If your using WAMP under windows, you can edit it by clicking the WAMP icon > PHP -> php.ini. In Debian, my config file is in /etc/php5/apache2. – meagar Feb 2 '10 at 14:15
Thats the main issue, my website is on a shared server. So is that the general consensus, that I'm fresh out of luck? :( – Yo Momma Feb 2 '10 at 14:19
There is no way to bypass this, by design - it's important that the owner of a server be able to explicitly cap upload size for users. The best you can do is appeal to somebody who has access to php.ini to make the changes for you. – meagar Feb 2 '10 at 14:21
show 2 more comments

You can change it via an .htaccess file.

.htaccess files are stored in the same directory as your .php files are. They modify configuration for that folder and all sub-folders. You simply use them by creating an .htaccess file in the directory of your choice (or modify it if present).

The following should enable you to increase your upload limit (if the server provider allows PHP config changes via .htaccess).

php_value upload_max_filesize 40M
php_value post_max_size 42M
share|improve this answer
It seems that it doesn't always work. On my dev machines setting appropriate value in .htaccess did the job. On the shared hosting however this setting do not work however error message is showing that maximum allowed upload size is that value I set in .htaccess. So a very wierd situation happens. – Jenea Aug 18 '12 at 21:09

You can also use ini_set function:

ini_set('post_max_size', '64M');
ini_set('upload_max_filesize', '64M');

this works like if you have changed the php.ini

share|improve this answer
In recent PHP versions these ini-settings are PHP_INI_PERDIR only, so you can't set them in your script. See here for more details. – acme Mar 6 at 8:40

you also may utilize by using ini_set function:

upload_max_filesize = 50M post_max_size = 50M

it can be works like realistic changes in the php.ini, but in the recent php versions these all ini. utilizations are PHP_INI_PERDIR only can be used, then you cannot setting them in your script. for more cilck on here

share|improve this answer
Am I missing something, or your answer is just an exact or nearly exact copy of Balder's answer (with small addition of acme's comment), given three months before yours, only written in a bit other words? Plus, you don't follow standard SO formatting guides. Bad start... – trejder May 1 at 9:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.