I've been struggling with this for a while now. I'm using features_extra to be able to to export taxonomy and nodequeues, and I have it on my local machine and my dev server. With fe_taxonomy and fe_nodequeue enabled, I get the following error when I try to go to the Modules or Features pages:

Fatal error: Maximum execution time of 120 seconds exceeded in /var/www/mysite/public_html/sites/all/modules/contrib/features_extra/fe_taxonomy.module on line 455

I then try disabling the two modules in teh db, but that doesn't work either. I get a script timeout, and then the modules are enabled in the db again. I have no idea what is re-enabling them. On top of that, when I try ""drush fr myfeature", I get "Current state already matches defaults, aborting." even though I know the code in my feature is different than what's in the db.

There is tons of memory available )way more than on my local), and the amount of taxonomy terms is the same between both locations.

Any suggestions? I rely on features a lot, and I'm stuck with simply being able to use them with this error.

Thanks.

Comments

wizonesolutions’s picture

Status: Active » Postponed (maintainer needs more info)

@wonder95: Try temporarily adding set_time_limit(0); to your settings.php near the top, within the PHP tags. See if this resolves it. If so, it's a processing time issue. This does not generally indicate a memory error.

If you can profile the issue with performance testing tools appropriate for your environment (although how to do this is beyond the scope of this issue queue) and tell me what function is the problem, that would help.

It sounds like something else is interfering or you have those other two modules as dependencies of a feature; you should disable that feature as well, or they will automatically be re-enabled.

Hope this helps. Reply back if you find more info.

wonder95’s picture

As an additional piece of information, if I try to disable fe_taxonomy in the db, I get this error when I try to access the Features page:

Fatal error: Cannot redeclare fe_taxonomy_features_api() (previously declared in /var/www/mysite/public_html/sites/all/modules/contrib/features/includes/features.ctools.inc(25) : eval()'d code:1) in /var/www/mysite/public_html/sites/all/modules/contrib/features_extra/fe_taxonomy.module on line 28
pfrenssen’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)

Closing this issue, if this is still a problem feel free to reopen.