I am a total newb, I hate to do this. In the hopes I am doing the right thing I post here. I am following a TUT on drupaltherapy when I go to map the feed it times out like so...

Fatal error: Maximum execution time of 30 seconds exceeded in /home/modelers/public_html/modules/feedapi_mapper/feedapi_mapper.module on line 491

If I post in wrong spot please tell me.

Comments

alex_b’s picture

Status: Active » Closed (fixed)

Ron - aggregation regularly exceeds the standard PHP maximum execution time of 30 seconds.

You can set the max execution time either in your server's configuration file (php.ini), in your settings.php file with ini_set() or at any time in your module with set_time_limit().

Please refer to http://us.php.net/set_time_limit for further documentation.