core php error log – max execution time – max memorny limit control by php code
max execution time is two options:
1) ini setting from php predefine var
ini_set('max_execution_time',9000);
2) time limit from php predefine var
set_time_limit(9000);
Increase ... Continue Reading →
Recent Comments