TheProjecter / osfilemanager

Automatically exported from code.google.com/p/osfilemanager
0 stars 0 forks source link

Filesize upload limit #1

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Upload a large file
2. Notice that the file is not uploaded

What is the expected output? What do you see instead?
The file is uploaded

Please use labels and text to provide additional information.

Original issue reported on code.google.com by arzy...@gmail.com on 6 Oct 2008 at 2:46

GoogleCodeExporter commented 9 years ago
Fix this by editing a php setting called post_max_size. there are a few ways to 
set
it to something higher. 

1) go into your php.ini file on your web server and edit post_max_size,
upload_max_filesize, and max_execution_time to whatever you want. 

2) edit your .htaccess file so it looks something like this: 
php_value upload_max_filesize 70M 
php_value post_max_size 80M 
php_value max_execution_time 500 

3) in the php file doing the posting and recieving add something like this: 
ini_set('upload_max_filesize', '70M'); 
ini_set('post_max_size', '80M'); 
ini_set('max_execution_time', '500'); 

Original comment by arzy...@gmail.com on 6 Oct 2008 at 2:47

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago

Original comment by arzy...@gmail.com on 28 Feb 2009 at 12:59