Question

I am working in localhost at port 8080 .

I am getting fatal error max execution time exceed time limit 60 seconds.

I have changed php.ini file to max_execution_time=1000 still I get the same error.

This is happening in wordpress plugin when I try to import.

Was it helpful?

Solution

Make max_execution_time = -1 or you can set threw ini_set('max_execution_time', -1);

OTHER TIPS

Change it to:

ini_set('max_execution_time', 0);

Basically means it will run forever, report back if this helps.

  php_value session.gc_maxlifetime 1200

mark above statement is a wrong answer.

I tried increase the execution time using

  set_time_limit(0)

it works thanks

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top