I am trying to upload a large size images that are more than 2.5 MB that was take from IPhone. It was not uploading i do know why
Even I set the php.ini file
Increase upload size in your php.ini
upload_max_filesize = 20M
post_max_size = 24M
Also restarted Apache server . I dont know why this high resolution images not uploading.
Will you please help me?
Thanks
you have to specify the size with MB, not M
upload_max_filesize = 8MB
post_max_size = 8MB
check this blogspot
Related
Im using stackosts for my instagram now i want to stream per-recorded video to youtube but the file manager is showing only 100MB as its limit, if i try to upload more that it show can't upload more that 10MB
This stackposts screenshot
enter image description here
also im doing this in xampp so help me to increase the file this is my php.in conf
'post_max_size = 128M
upload_max_filesize = 128M
max_execution_time = 2000
max_input_time = 3000
memory_limit = 256M'
i want to increase the file limit of stackposts in xampp
I have shared hosting on godaddy. I am uploading a large video files upto 150 MB on server. It starts upload & upload some part of video upto 15% but after that connection is broken. I get below error
503 - SERVICE UNAVAILABLE
I have also manually configured the php.ini file below like
post_max_size = 512M
max_execution_time = 800
I am not sure if it is the programatically issue because i am able to upload small video on good connection. But as video size is large then i face the issue.
Kindly let me know what is the issue ?
Change your upload_max_filesize to the same amount as well
upload_max_filesize = 512M
post_max_size = 512M
You may need to increase your memory as well
memory_limit = 32M
Dont forget to restart your server after updating the php.ini file
If you are using an FTP connection for file upload , there is an option in the Filezilla to increase the wait time . Hope this works for you .
I'm doing an app that upload images by laravel and angular 2.
I changed in php.ini file as following:
memory_limit = 128M
upload_max_filesize = 100M
max_file_uploads = 100
But when I upload image that size is more than 10M it show this error
Could you show me the way to fix it?
When uploading high resolution images such as 3000x3000 or more, the image is uploaded but it bypasses the resizing process, both when using GitHub and PHPImageMagician.
Increasing the settings in php.ini did not fix the issue.
php.ini
memory_limit:32M
upload_max_filesize:20M (was 2M)
max_execution_time:60 (was 30)
max_input_time:60
May be this is problem of upload image timeout limit so I suggest you please update this value
Go to this Path
C:\wamp\bin\apache\apache2.2.8\bin\php.ini
Change to:
post_max_size = 750M
upload_max_filesize = 750M
max_execution_time = 5000
max_input_time = 5000
memory_limit = 1000M
Restart WAMP to try again.
I am trying to change the max upload size on my server to allow larger files to be uploaded.
I have gone into the php.ini file, and have changed the following settings:
upload_max_filesize = 20M
post_max_size = 21M
This did not seem to make any difference, as I still can't upload anything bigger than 2MB. Any suggestions would be very helpful.
Thanks