Go Back   Forums > Abandonia.com > Community News & Feedback > Old Suggestions
Memberlist Forum Rules Today's Posts
Search Forums:
Click here to use Advanced Search

Closed Thread
 
Thread Tools Display Modes
Old 28-01-2007, 12:28 AM   #1
Doubler
Resident Llama
 
Doubler's Avatar

 
Join Date: Jul 2004
Location: Groningen, Netherlands
Posts: 798
Send a message via MSN to Doubler
Default

Same for me. It only happens in the main window, every 10-12 seconds it pops up again no matter what.

Stop the pain indeed :P

Could it be shoutbox related?
Edit: Propably. A quick shoutbox test showed up in the error report emmediatly.
__________________
Doubler is offline                         Send a private message to Doubler
Old 28-01-2007, 01:13 AM   #2
Frodo
One ring to rule them all...
 
Frodo's Avatar

 
Join Date: Jun 2005
Location: Edinburgh, Scotland
Posts: 1,493
Default

Yeah, that's the same message I get. It's SO frustrating. :wallbash:



__________________
Please click on the baby dragon eggs to help them grow -














Frodo is offline                         Send a private message to Frodo
Old 28-01-2007, 07:20 AM   #3
Abi79
Home Sweet Abandonia

 
Join Date: May 2005
Location: Oradea, Romania
Posts: 829
Send a message via Yahoo to Abi79
Default

That's because you don't let the shoutbox load before you click a link.
Abi79 is offline                         Send a private message to Abi79
Old 28-01-2007, 09:03 AM   #4
Frodo
One ring to rule them all...
 
Frodo's Avatar

 
Join Date: Jun 2005
Location: Edinburgh, Scotland
Posts: 1,493
Default

<div class='quotetop'>QUOTE(Abi79 @ Jan 28 2007, 08:20 AM) [snapback]276814[/snapback]</div>
Quote:
That's because you don't let the shoutbox load before you click a link.
[/b]
The shoutbox doesn't load no matter what I do.

The error message comes, I click on 'OK' to get rid of it. Then just wait about 10 seconds and the message comes back again. The shoutbox still doesn't load.

:wallbash:

__________________
Please click on the baby dragon eggs to help them grow -














Frodo is offline                         Send a private message to Frodo
Old 28-01-2007, 09:58 AM   #5
Scatty
Treasure hunter
 
Scatty's Avatar

 
Join Date: Jan 2006
Location: Recklinghuasen
Posts: 1,906
Default

Hmm, I get the message only when I go to a forum part from the main forum. Klicking on OK does it, and it doesn't reappear.
Scatty is offline                         Send a private message to Scatty
Old 28-01-2007, 10:00 AM   #6
Japo
Autonomous human
 
Japo's Avatar


 
Join Date: Mar 2006
Location: ,
Posts: 4,613
Default

First you shouldn't use MS Internet Explorer, it's just bad. What I experienced once with Opera was the Shoutbox saying: "Initializing shoutbox! Please wait a few seconds while the shouts are retrieved!". And then I got a javascript error, I thought I had copied the error window to the clipboard but I didn't and now the shoutbox loads fine and I'm not able to duplicate the error so I can't show you. But it was a very small window, nothing like the one shown above, and it said something about xajax.js or something like that.
__________________
Life starts every day anew. Prospects not so good...
Japo is offline                         Send a private message to Japo
Old 28-01-2007, 05:22 PM   #7
horrorist
Newbie

 
Join Date: Jan 2007
Location: ,
Posts: 21
Default

<div class='quotetop'>QUOTE(Japofran @ Jan 28 2007, 12:00 PM) [snapback]276846[/snapback]</div>
Quote:
But it was a very small window, nothing like the one shown above, and it said something about xajax.js or something like that.
[/b]
You can generate this message if you just type into your browser: "java script:alert('Error: the xajax Javascript file could not be included. Perhaps the URL is incorrect?\nURL: xajax_js/xajax.js');"
(Don't forget the apostroph and drop the blank between java and script!)

I use opera too, not the very latest version and the shoutbox does not load at all, without any error message.

After looking through the sourcecodes I got to the following:
The shoutbox is launched into an own iframe which is included into a table used to give the page a propper layout. The whole shoutbox is controlled by the xajax.js (a javascript file).
After reading this file I would guess:
The first thing, that script tries to do is to detect the current client and his ability to understand XML by calling the presence of certain active-x objets. Opera (at least the older versions) does not know any active-x object, so the whole shoutbox does not launch.
If the xajax.js detects a suitable activ-x object it actualizes the contents of the shoutbox, which means it requests this contents from the server and includes them into the HTML sourcecode of the shoutbox- page. The contents of the shoutbox seem to be encoded into XML, which is no problem, if you are using MSIE (V 6.0 or higher) or newer Mozilla- Based browsers. If your browser does not parse XML, well bad luck.
This procedure is repeatet every 15 seconds.

Maybe there is a construction error in this script:
Code:
r.onreadystatechange=function(){if(r.readyState!=4)
return;if(r.status==200){if(xajaxDebug)xajax.DebugMessage("Received:\n"+r.responseText);if(r.responseXML&&r.responseXML.documentElement)
xajax.processResponse(r.responseXML);else{var errorString="Error: the XML response that was returned from the server is invalid.";errorString+="\nReceived:\n"+r.responseText;trimmedResponseText=r.responseText.replace(/^\s+/g,"");trimmedResponseText=trimmedResponseText.replace(/\s+$/g,"");if(trimmedResponseText!=r.responseText)
errorString+="\nYou have whitespace in your response.";alert(errorString);document.body.style.cursor='default';if(xajaxStatusMessages==true)window.status='Invalid XML response error';}
}
This means the js will detect the HTTP- status. If the status is 200 (OK) nothing will happen. If the status is not 200 the error message allready mentioned by doubler will appear. The handling of other possible status codes are included in the script, but after detecting if the status is not 200. So any status different from 200 (400, 401, 402, 403 - oh I love this... , 404, 500, 501, 502, 503) leads to that errormessage without beeing handled in the right way. If there are no other problems (e.g. 408 - request timeout, 503 - service unavailable) there will be no error messages. Seems that the corresponding else operator has to be placed somewhat later in the script.

Hope that makes sense...
horrorist is offline                         Send a private message to horrorist
Old 28-01-2007, 12:02 PM   #8
Lulu_Jane
10 GOSUB Abandonia
20 GOTO 10
 
Lulu_Jane's Avatar

 
Join Date: Feb 2005
Location: Praha, Czech Republic
Posts: 3,273
Default

I was getting the same shoutbox related error, but it seems to have seems to have stopped now. Very irritating.
__________________
I have vestigial adventure elements
Lulu_Jane is offline                         Send a private message to Lulu_Jane
Old 28-01-2007, 10:13 PM   #9
Dave
Mandolin & Spaghetti Soldier
 
Dave's Avatar

 
Join Date: Sep 2005
Location: Emilia, Italy
Posts: 8,518
Default

I believe you... :blink:
__________________
Dave is offline                         Send a private message to Dave
Old 29-01-2007, 01:01 AM   #10
horrorist
Newbie

 
Join Date: Jan 2007
Location: ,
Posts: 21
Default

Well took me at least two hours to crossread the sourcecodes and another four hours to remove those knots out of my brain... :w00t:
horrorist is offline                         Send a private message to horrorist
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Dalek Attack Romano Games Discussion 11 23-02-2010 05:59 PM
LHX - Attack Chopper buh Approved Requests 8 29-07-2009 09:39 AM
LHX - Attack Chopper Luchsen L 0 25-06-2008 04:54 PM
Attack Romano Games Discussion 2 16-08-2007 05:35 AM
Should We Attack USA a1s Blah, blah, blah... 66 12-08-2005 11:25 AM


Posting Rules
You may post new threads
You may 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
 


The current time is 02:10 AM (GMT)

 
Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.