Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Unchangable Extensions
Since I updated to the lastest Vanilla my extensions are permanently locked. The option box for each extension s unchecked on the page and when I try to click them to the 'on' position they go back to 'off' on a reload of the page.
What's wrong? How can I uncheck the extensions outside of this menu?
Thanks
What's wrong? How can I uncheck the extensions outside of this menu?
Thanks
0
This discussion has been closed.
Comments
Weird
renaming the extensions.php just caused errors. if i clear the file completely and try recheck my extensions nothing happens.
what the hell is up?
Have you modified Vanilla at all, other than installing extensions?
I was getting errors whenever I tried to enable or disable an extension and it was because of WordPress integration.
The JS functions that are called when an extension is enabled or disabled have changed in the new version. I've seen it happen where people can't modify extensions because their JS files are cached and they need the new versions.
You will need to debug the issue yourself. A good way of doing this is to have vanilla send you to the ajax page that processes the extension modification request so you can see any errors that may be occurring. You can do this by opening up vanilla/js/ajax.js and changing this:
// Debug // document.location = DataSource;
to this:
// Debug document.location = DataSource;
Keep in mind that doing so will cause any and all ajax calls in vanilla to be redirected, so things like bookmarking will also cause vanilla to go to the ajax processing page. But you can change it back quickly once you've got the problem figured out.
So, give this a shot and then come on back and tell us what happened when you attempted to turn on/off an extension...