Size of Uploaded file
Moderator: General Moderators
Size of Uploaded file
what is maximum size of file uploaded in the server in PHP? can we change it by editing php.ini file?
Re: Size of Uploaded file
Yes, you can change it. Pay attention to
upload_max_size
post_max_size (should be bigger than upload_max_size)
memory_limit
Also, if you are planning to upload large files, I would recommend you using uploadify or another flash-uploader on the client side (so you can provide user with progress bar)
upload_max_size
post_max_size (should be bigger than upload_max_size)
memory_limit
Also, if you are planning to upload large files, I would recommend you using uploadify or another flash-uploader on the client side (so you can provide user with progress bar)
Re: Size of Uploaded file
default max_upload_size is 2M
Re: Size of Uploaded file
Thanks Darhazer and fugix for the reply...
Re: Size of Uploaded file
glad we could help