AnimeSuki Forums

Register Forum Rules FAQ Community Today's Posts Search

Go Back   AnimeSuki Forum > Support > Forum & Site Feedback

Notices

Reply
 
Thread Tools
Old 2010-01-18, 17:00   Link #1
Ricky Controversy
Frandle & Nightbag
 
 
Join Date: Oct 2009
Posting Interface Malfunction

As of three days ago, I am no longer able to interact with any of the posting interface's functions. While, as you can see, the text field itself works just fine and the post button itself is responsive, nothing immediately surrounding the text field is responsive. Italics, bold, underline, formatting, quote, spoiler, etc. Not only does this affect the buttons themselves, but it also affects the quick application of some of the functions: Ctrl+I no longer places italics tags, for instance.

In addition, since this error first appeared, I have been unable to edit or delete my own posts. This problem is exclusive to the AnimeSuki boards.
__________________
Ricky Controversy is offline   Reply With Quote
Old 2010-01-18, 17:05   Link #2
SeijiSensei
AS Oji-kun
 
 
Join Date: Nov 2006
Age: 74
Running Noscript or anything else that would disable Javascript?
SeijiSensei is offline   Reply With Quote
Old 2010-01-18, 17:09   Link #3
Ricky Controversy
Frandle & Nightbag
 
 
Join Date: Oct 2009
No, nothing of the sort.
__________________
Ricky Controversy is offline   Reply With Quote
Old 2010-01-18, 17:13   Link #4
felix
sleepyhead
*Author
 
 
Join Date: Dec 2005
Location: event horizon
Since I can run it just fine pretty sure you blocked the javascript here or simply blocked the address from where the javascript is loaded (same effect). You did this knowingly or it was done automatically by some program you are using (having a custom etc/host file will also produce same effect on windows). Try using another browser to check if you get same behavior (gonna assume you use firefox here).
__________________
felix is offline   Reply With Quote
Old 2010-01-18, 17:20   Link #5
Ricky Controversy
Frandle & Nightbag
 
 
Join Date: Oct 2009
Quote:
Originally Posted by Cats View Post
Since I can run it just fine pretty sure you blocked the javascript here or simply blocked the address from where the javascript is loaded (same effect). You did this knowingly or it was done automatically by some program you are using (having a custom etc/host file will also produce same effect on windows). Try using another browser to check if you get same behavior (gonna assume you use firefox here).
Went ahead and did that. The interface functions properly on IE. The problem is that I honestly have no clue what would have effected this change. When it happened, I had sent out a private message on this forum in which I made use of the functional interface not more than ten minutes prior to the message in which I noticed the error. I can't recall doing anything other than browsing the fora during that time, so from your suggestions it seems to me that it would be something that does this automatically.
__________________
Ricky Controversy is offline   Reply With Quote
Old 2010-01-18, 17:25   Link #6
felix
sleepyhead
*Author
 
 
Join Date: Dec 2005
Location: event horizon
Do you have Greasemonkey, Ad-block, Noscript or some other plug-in installed that manipulates site content in any way? Right, its rare but open the source file for the page and copy paste first line (or just check if doctype is there first) what happens is there are programs (proxy's etc) that will insert content ads on your browser pages or in case of mallware worse, these can affect other scripts or even the site rendering properly.
__________________
felix is offline   Reply With Quote
Old 2010-01-18, 17:30   Link #7
NightWish
…Nothing More
*Administrator
 
 
Join Date: Mar 2003
Age: 44
Start by flushing your browser's cache. Then tell me if you have had any problems accessing the main site at all? Three days ago and/or now? Lastly, please confirm you can download a script file recently added to the forum.
NightWish is offline   Reply With Quote
Old 2010-01-18, 17:35   Link #8
felix
sleepyhead
*Author
 
 
Join Date: Dec 2005
Location: event horizon
Quote:
Originally Posted by NightWish View Post
Lastly, please confirm you can download a script file recently added to the forum.
Oh NW I love you!
**goes to play with user scripts >xD
__________________
felix is offline   Reply With Quote
Old 2010-01-18, 17:36   Link #9
Ricky Controversy
Frandle & Nightbag
 
 
Join Date: Oct 2009
Cache flushed. I haven't had any difficulties with the main site at all, and now the interface is working, though I'll need to see if edit/delete functions work again.

Edit: Delete and Edit are working. Looks like the cache flush was all that was needed. Thanks a lot! I ought to have thought of that, but when it didn't happen on other fora, I was thrown. I wonder why only this forum was affected?
__________________
Ricky Controversy is offline   Reply With Quote
Old 2010-01-18, 17:45   Link #10
NightWish
…Nothing More
*Administrator
 
 
Join Date: Mar 2003
Age: 44
Okay; I can replicate your problem. I believe you've temporarily had problems connecting to the main site's server. The script was recently added to the forum to facilitate the collapse of the sub forums view in the anime discussion sections.

It only needs a short failure window when trying to download to cause a problem. When that script fails to load, the code that relies on it breaks and stops every other piece of JavaScript on the page from working. We'll have to move the script to the forum's server because I can't think of an easy (and clean) way to make the dependent code more resilient.
Quote:
Originally Posted by Cats View Post
Oh NW I love you!
Quote:
Originally Posted by Ricky Controversy View Post
Thanks a lot! I wonder why only this forum was affected?
You're welcome and see above. Though I am wondering if there is an odd issue with FireFox and cross-domain loading of scripts, generally speaking, because I often have to force a refresh or flush the cache on some sites, because it fails to download a bunch of JavaScript and then seems to remember that it failed and not try again. The few times I've looked at Facebook have been notoriously bad.
NightWish is offline   Reply With Quote
Old 2010-01-18, 17:53   Link #11
felix
sleepyhead
*Author
 
 
Join Date: Dec 2005
Location: event horizon
Move the script to the bottom, bellow any forum scripts. I'm going to assume you are using something like:
Code:
 $(document).ready(function(){
   // Your code here
 });
__________________
felix is offline   Reply With Quote
Old 2010-01-18, 17:57   Link #12
NightWish
…Nothing More
*Administrator
 
 
Join Date: Mar 2003
Age: 44
Yeah... that might work. I can't remember when the forum scripts become "active"; there is a sort of boot process that VB use if I recall correctly... Never-the-less, I'm going to just let GHDpro move the script because I think it is better having it all with the forum as a single unit, rather than having anything break if the main site has issues. Even if that means two copies of the file...
NightWish is offline   Reply With Quote
Old 2010-01-18, 18:40   Link #13
GHDpro
Administrator
*Administrator
 
 
Join Date: Jan 2001
Location: Netherlands
Age: 45
I moved the Javascript code to hide the subforums to the top of the footer (above vBulletin's own Javascript init() function) because there was a noticeable delay in hiding the subforums and I wanted it to be instant. I eventually made some other changes to make this happen but forgot to move the javascript back to the very bottom (of the footer & page), but I've done so now.

The piece of external javascript was jQuery btw, and I've changed the URL to this:
http://ajax.googleapis.com/ajax/libs.../jquery.min.js
This means jQuery should now load faster than the forum pages themselves for most users.

My apologies for any trouble/confusions caused by this issue.
GHDpro is offline   Reply With Quote
Old 2010-01-18, 18:43   Link #14
felix
sleepyhead
*Author
 
 
Join Date: Dec 2005
Location: event horizon
It also means its now updated to the latest 1.4.x, yey.
__________________
felix is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 02:58.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
We use Silk.