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
Related
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 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
I'm writing php based image gallery. For the project I'm using CodeIgniter framework.
The sers can upload up to 5 images.
When a small images (800px in width) are uploaded it works. The problem comes when user try to upload 5 images each of them about 2mb and > 3200px in width.
In this case the images are not uploaded and $_POST is empty.
Here is what I did so far but unfortunately didn't help
I changed the default values in php.ini with this
max_execution_time = 180
max_input_time = 160
emory_limit = 228M
What could be the problem?
Look at:
upload_max_filesize = 10M
post_max_size = 10M
You also permuted few letters in the name of variable:
emory_limit = 228M
It should be memory_limit.
After a quick google, which I'm sure you could have done, I found this website with all the details you need.
The main indication is to add:
php_value upload_max_filesize 10M - The maximum file size that can be uploaded.
php_value post_max_size 10M - The maximum amount of post data allowed by PHP.
php_value max_input_time 300 - The amount of time a script can run before being terminated.
php_value max_execution_time 300 - The amount of time before a timeout that the site should upload a file.
I want to know that is there any way to increase the max file size limit of import option in php myadmin. In case of mine it is being displayed that the max file size limit is 2mb. But i downloaded a sample .sql file of a large database which is about 40 mb. Now what can i do to import that database??
Open php.ini
Find:
post_max_size = 8M
upload_max_filesize = 2M
max_execution_time = 30
max_input_time = 60
memory_limit = 8M
Replace:
post_max_size = 750M
upload_max_filesize = 750M
max_execution_time = 5000
max_input_time = 5000
memory_limit = 1000M
Save file & Restart services.
Most likely this is an issue with php.ini and your max upload is limited there. Search php.ini for upload_max_filesize - I would bet it is at 2MB. Change to 50 and you should be good to import.