Jump to content


Corporate Sponsors


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


  • You cannot reply to this topic
No replies to this topic

#1 sunrise99

  • Community Member
  • 139 posts
  • Real Name:David

Posted 18 August 2011, 02:12

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);
// }
// }