문제

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.

도움이 되었습니까?

해결책

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

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top