sunrise99 Posted August 18, 2011 Posted August 18, 2011 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); // } // }
Recommended Posts
Archived
This topic is now archived and is closed to further replies.