SlimerJS extensions.getAddons.cache.enabled
Asked Answered
B

1

13

I'm having an issue running SlimerJS through CasperJS, I get the next message "1414441945905 addons.repository WARN cacheEnabled: Couldn't get pref: extensions.getAddons.cache.enabled".

I have a nodejs scraper running with CasperJS and Slimer (0.9.3) as the engine. This process is executed by another process (as a child_process.spawn). Also, this process is scheduled with PM2. It runs okay but sometime throws this error, and it hangs up, any ideas?

Blind answered 27/10, 2014 at 20:54 Comment(0)
F
2

I had such error, to fix this you should add the line:

pref("extensions.getAddons.cache.enabled", true);

into your *pref*.js file. (in your firefox folder execute this:

nano `find ./ -name "*pref*.js"`

) See for details: http://bugzilla.mozilla.org/show_bug.cgi?id=953998#c4

Fop answered 5/4, 2015 at 22:36 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.