Sí, tienes que modificar el php.ini en tu hosting, solamente si el proveedor tiene habilitado el uso de este en su hosting. Puedes probarlo abriendo un blog de notas y le pones el codigo, despues lo sube por ftp en la carpeta de la web, y por ultimo lo renombras como php.ini
Yes, you have to modify the php.ini in your hosting, only if the provider has enabled the use of this in your hosting. You can try opening a blog of notes and you put the code, then upload it via ftp in the web folder, and finally rename it as php.iniEste es el codigo:
/ This is the code:- Code: Select all
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 70
max_input_time = 300
memory_limit = 256M
; Maximum size of POST data that PHP will accept.
post_max_size = 200M
; Maximum allowed size for uploaded files.
upload_max_filesize = 200M
; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
allow_url_fopen = On
date.timezone = "America/New_York"
Cambia el valor 200M, por este valor: 1024M, despues cambia el 300 y 70 por números de valor superior, para que el hosting pueda soportar la subida del archivo, lo mismo con la memory_limit.
En google puedes poner el nombre de cada linea para que te explique la funcionalidad, asi entenderas y sabras que valores poner.
Para subir archivos grandes te recomiendo usar como minimo un VPS con cPanel.
Change the value 200M, for this value: 1024M, then change the numbers 300 and 70 superior value, so that the hosting can handle the file upload, the same with the memory_limit.
In google you can put the name of each line for me to explain the functionality, so you'll know you will understand and put values.
To upload large files I recommend you use at least a VPS with cPanel.