Uploading my site to mid-way [closed]

0

I created a real estate website, when the broker will upload photos in the property, and these are high resolution weighing around 2 ~ 5mb, it stops climbing, for example hangs at 83%. Can this be the plugin problem I've added, or is the server limiting the connection? Ps. Images of smaller size go up 100%.

    
asked by anonymous 17.10.2017 / 15:00

1 answer

0

Php comes by default on the server allowing a maximum upload size, and has a timeout too, they can be changed by the initial configuration:

For size:

1 - Open the file php.ini

2 - Find the lines with 'upload_max_filesize' and 'post_max_filesize'

3 - Change your values to something that is large enough for the size of the images.

For the time:

1 - Open the file php.ini

2 - Find the line 'set_time_limit'

3 - Change your value (seconds) to a satisfactory value.

Font

    
17.10.2017 / 16:50