How to increase PHP Upload Limit?

Status
Not open for further replies.

johncreena

New Member
Messages
24
Reaction score
0
Points
0
Hi,

How to increase PHP Upload Limit? Currently I am using a web application and the max upload size shown is 16M. How can i increase it to the max offered for free account. I think it's 64M.

What would be the max upload limit for a x10 paid account ?

Regards,
John.
 

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
Hello,

Unfortunately, we can't change settings for individual users on free. The limit on premium would be much higher, though.
 

johncreena

New Member
Messages
24
Reaction score
0
Points
0
Hi,

I am ready to go for premium however I need the PHP upload limit to set to the max that PHP supports i.e. 2GB. Is that possible somehow ?

Thanks
John.
 

Skizzerz

Contributors
Staff member
Contributors
Messages
2,928
Reaction score
118
Points
63
If you are trying to upload a 2GB file via PHP, you're going to run into other problems. Apache times out the connection after 300 seconds (5 minutes), so you'd need to be able to upload 2GB in under 5 minutes, a feat that probably will not happen. If you truly need to upload files this large, you should use FTP or some sort of flash-based uploader.
 
Status
Not open for further replies.
Top