PDA

View Full Version : phpini timeout


ITC
22nd of September 2005 (Thu), 10:55
I do not have access to php.ini
How can I increase the timeout period for the php ftp

Pekka
22nd of September 2005 (Thu), 11:03
in php code (already there in EE upload page):

set_time_limit (1200);

in php.ini for virtual server configuration:

max_execution_time = 1200

in .htaccess:

php_value max_execution_time 1200

Note that changing the value is not possible when PHP has safe mode = ON. In that case just use smaller originals or upload less per batch.