Maximum File Size

Status
Not open for further replies.

dontknowmymailid34

New Member
Messages
6
Reaction score
0
Points
0
Dear Sir/Madam,
What is the maximum file size that can be uploaded from the site to the webserver.
Thanks in advance for your reply.
Regards.
John King.
 

Gouri

Community Paragon
Community Support
Messages
4,565
Reaction score
245
Points
63
Dear Sir/Madam,
What is the maximum file size that can be uploaded from the site to the webserver.
Thanks in advance for your reply.
Regards.
John King.

If you are uploading through File manager in Cpanel then it is 16MB

Through FTP there is no limit....
 

dontknowmymailid34

New Member
Messages
6
Reaction score
0
Points
0
If you are uploading through File manager in Cpanel then it is 16MB

Through FTP there is no limit....

Gouri, I am using a form in my site to upload files. I am using the function move_uploaded_file() function and also I have set the php.ini variables as follows:
ini_set('upload_max_filesize', '15M');
ini_set('post_max_size', '15M');
ini_set('max_input_time', 300);
ini_set('max_execution_time', 300);

I am not knowing what more to do. Files that are 10M or so are not getting uploaded.
 

dontknowmymailid34

New Member
Messages
6
Reaction score
0
Points
0
In FTP and in http uploads I am able to upload only 8MB max. I feel my ISP is setting this limit. Am I right or wrong.
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
ini_set doesn't do anything in this case. You cannot override the system settings:

upload_max_filesize is set at 16M

max_input_time is 60 sec

max_execution_time is 30 sec

post_max_size is 8M
 
Status
Not open for further replies.
Top