Cannot set time limit in safe mode * Risolto
Inviato: 29/07/2005, 11:16
Warning: in /home/xxxl/xxxx/includes/functions/general.php on line 808
Per chi avesse questo problema l'ho risolto (non è tutta farina del mio sacco) modificando il general php mettendo @ davanti set_time
Sets timeout for the current script.
// Cant be used in safe mode.
function tep_set_time_limit($limit) {
if (!get_cfg_var('safe_mode')) {
@set_time_limit($limit);
Una domanda agli esperti....va bene questa modifica o crea qualche problema?
Ciao e grazie
Roberto
Per chi avesse questo problema l'ho risolto (non è tutta farina del mio sacco) modificando il general php mettendo @ davanti set_time
Sets timeout for the current script.
// Cant be used in safe mode.
function tep_set_time_limit($limit) {
if (!get_cfg_var('safe_mode')) {
@set_time_limit($limit);
Una domanda agli esperti....va bene questa modifica o crea qualche problema?
Ciao e grazie
Roberto