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.
'hide' 'block' 'show all' have stopped working
I logged in to my admin account today and noticed that when I tried any of the options mentioned they simply didn't work. The popup box shows, OK is clicked and when the window refreshes nothing has changed.
What files are involved in these processes? I have been fiddling a lot recently and could have changed something by mistake.
I have given a user named 'test' a moderator account, password 'test'. If anyone would be so kind as to check out the problem first hand I'd be really greatful: huge-entity.com/forum
What files are involved in these processes? I have been fiddling a lot recently and could have changed something by mistake.
I have given a user named 'test' a moderator account, password 'test'. If anyone would be so kind as to check out the problem first hand I'd be really greatful: huge-entity.com/forum
0
This discussion has been closed.
Comments
I always do this by altering the datamanager class directly. Open up js/data.js and change these lines:
this.LoadData = function(DataSource) { var Request = this.InitiateXmlHttpRequest();
to this:
this.LoadData = function(DataSource) { document.location = DataSource; var Request = this.InitiateXmlHttpRequest();
From that point forward, whenever you click any button that has ajax capabilities, it will take you to the page where that request is processed so you can see if there are any errors occurring.
Keep in mind that any of your users will get this as well, so you will want to do it at a slow time and you will want to do it as quickly as possible. If you get any errors, post them up here and then comment that document.location line out asap:
this.LoadData = function(DataSource) { // document.location = DataSource; var Request = this.InitiateXmlHttpRequest();
Now I've just got to figure out how the hell theat file got messed up. I don't remeber touching it
Thanks again