Why php always give me that error ? I changed php.ini values to :
max_execution_time = 99999 ;
max_input_time = 99999;
max_input_nesting_level = 64;
memory_limit = 256M;
max_input_vars = 10000;
i have created .htaccess file where i put :
php_value max_execution_time 9999
i have located php.ini 50 times to be sure i am at right location.
I have set :
set_time_limit(9999);
at the begining of my php script.
I have restarted MAMP 50 times, even laptop.
If i use phpinfo(); at the begining of my php script i can see both values (local and master) are set to 99999
I changed phpmyadmin conf located in MAMP\bin\phpMyAdmin\libraries\config.default.php to :
// maximum execution time in seconds (0 for no limit)
$cfg['ExecTimeLimit'] = 0;
But nothing works. Still getting error. Any help is appreciated.