XF 1.5 Increasing RSS feed time

Simon

Active member
I am trying to import data from a RSS into a specific forum but I am getting the following error:

Code:
ErrorException: Fatal Error: Maximum execution time of 30 seconds exceeded - library/Zend/Feed/Reader/Extension/Atom/Entry.php:283

Is there anyway I can increase the time limit?
 
You could try putting this in your library/config.php file:
Code:
set_time_limit(120);
If that doesn't help, the max_execution_time will need to be increased in php.ini directly.
 
Top Bottom