Page 1 of 1

what's up with wiki?

Posted: Wed Jul 02, 2008 8:46 pm
by number one bastard
i tried to go to wiki yesterday and noticed that there IS no wiki, ne one know what happened or if they changed the address ?

Re: what's up with wiki?

Posted: Wed Jul 02, 2008 8:51 pm
by Alkapwn

Re: what's up with wiki?

Posted: Thu Jul 03, 2008 1:43 am
by DM_Kim
The link to Wiki from nsrealm works fine for me as well:
http://www.nsrealm.com/site/index.php

Re: what's up with wiki?

Posted: Thu Jul 03, 2008 9:28 am
by VagaStorm
Reding first post scared the crap out of me. :p

Re: what's up with wiki?

Posted: Thu Jul 03, 2008 12:11 pm
by number one bastard
VagaStorm wrote:Reding first post scared the crap out of me. :p
lol, ty vaga and kim, must be my ancient comp

Re: what's up with wiki?

Posted: Thu Jul 03, 2008 1:48 pm
by Celorn
number one [censored] wrote:
VagaStorm wrote:Reding first post scared the crap out of me. :p
lol, ty vaga and kim, must be my ancient comp
Hmm... *looks left* ... *looks right* ... hmm no fatzo,

P\/\/NDT!!!!!!11!!1!11!eleventyone!!!

Some cool stuff on the wiki, i'm gonna have to play more to get some of it!

and..err.. kapwn... that banner is a BIT out of control (size-wise)

Re: what's up with wiki?

Posted: Thu Jul 03, 2008 2:10 pm
by Amoenotep
yeah..i was thinking it was a bit wide....might want to try to condense it down ;)

Re: what's up with wiki?

Posted: Thu Jul 03, 2008 2:51 pm
by Alkapwn
heehee i was wondering how long it would take for someone to point it out.
fixed :P

Re: what's up with wiki?

Posted: Sun Jul 06, 2008 12:53 pm
by Bargeld
I've had this issue on our wiki previously and it has also been occurring regularly at the NWN wiki. I found the cause, which can be corrected by the admins of the wiki. I noticed that cause of the NWN wiki, specifically, was the random ad generation javascript.

This is a snippet from a google maps wiki support page, but it is consistant with the 'gerenal' wiki problems occuring. An altenate solution (which I don't like) is to use Firefox, which supposedly will not have the same probs as IE.
These errors are produced in IE when the javascript tries to change the page before it has completed rendering. There are 3 common ways to solve this problem:
move all the javascript to the <head> of the document and call a makeMap() function which initializes the Google Map in the onload handler (in the <body> tag, <body onload="makeMap();">). The onload handler is executed after the page finishes loading. thread1 thread2
put all the javascript at the end of the <body> (just before the </body> tag) see this message.
a variation of #1, use a setTimeout to delay the processing of the map code until the page has finished rendering. see this message.
(variation of 1) use window.onload. Allows multiple onload handlers, see Doug Henderson's page at multiple onload handlers. This is the way that was used to fix the operation aborted error on the Get_Lon_Lat page here.