Error:
Warning: set_time_limit(): Cannot set time limit in safe mode in /var/www/../install/includes/functions/general.php on line 47
Solution:
In that file, change this code:
////
// Sets timeout for the current script.
// Cant be used in safe mode.
function osc_set_time_limit($limit) {
if (!get_cfg_var('safe_mode')) {
set_time_limit($limit);
}
}
Into this code:
////
// Sets timeout for the current script.
// Cant be used in safe mode.
// function osc_set_time_limit($limit) {
// if (!get_cfg_var('safe_mode')) {
// set_time_limit($limit);
// }
// }
Latest News: (loading..)
fixed for Warning: set_time_limit(): Cannot set time limit in safe mode in /var/www/../install/includes/functions/general.php on line 47
Started by sunrise99, Aug 18 2011, 02:12
No replies to this topic














