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.
RSS2 in sidebar
How just the Atom comes up and not the RSS2 link on the sidebar on v1?
I tried grabbing the files provided by SirNot here http://lussumo.com/community/comments.php?DiscussionID=956&page=2#Comment_13889 but one of the links was dead.
ANy ideas?
0
This discussion has been closed.
Comments
this worked but i still get that pop up "failed to modify extension"
1. What OS, Browser, and versions are you using?
2. Open up js/ajax.js and uncomment line 50 so it looks like this:
document.location = DataSource;
This will make it so that the ajax request will instead redirect you to the page that performs the action. So, when you click any ajax button, it will redirect you to the ajax handler page so you can see what exactly is going wrong. If you see any error messages when you try to turn an extension on or off, paste it in here.
Happend in IE7beta2 also.
edited the JS and will let u know.
Okay, change the js file back and let's try something else.
Open up js/global.js and change lines 162 and 163 to look like this:
function SwitchExtensionResult(Request) { alert(Request.responseText); var Item = document.getElementById(Request.responseText);
Then hard-refresh the extension page (so you get the latest js files) and try turning an extension on or off...
however it is writing to conf/extension.php
I've got to see if I can duplicate this, because it just doesn't make any sense.
see below...
http://lussumo.com/community/discussion/2144/lace-extension-and-v1/#Item_11
Once I reactivated the WhoseOnline extension the problems started again. I will provide you the exact details of what happend though when the error did occur.
Clicked on Extension that I would enable
Pop came up with the extension name - ie. clicked to enable RSS2 and the pop text would say RSS2 with a small yellow warning sign before it.
Clicked Ok and the dialogue closed.
Another dialogue box opens up saying "Failed to Modify Extension"
Clicked ok
Activity Indicator continued to spin and just sits there.
Hard refresh the page and it doesnt look like the extension is enabled, however when looking at conf/extensions.php it did write to the file.
The problem was that dknowles had a bunch of white-space at the bottom of his extension after his final ?> declaration. This caused whitespace to also be dumped into the ajax pages and caused the error. I will fix the error, but I guess it should be noted here that you should never have any white-space in your extension files because it could mess up other extensions that try to send headers.