• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Get your art tools and paintbrushes ready and enter Hive's 34th Texturing Contest: Void! Click here to enter!

Chat system bugs

Status
Not open for further replies.
Level 21
Joined
Mar 18, 2007
Messages
2,247
Chat room Bug

+ signs don't show up in the chat room

[Edit by Wolve] ~ Threads merged.
 

Attachments

  • ChatGlitchPic1.jpg
    ChatGlitchPic1.jpg
    51.2 KB · Views: 79
  • ChatGlitchPic2.jpg
    ChatGlitchPic2.jpg
    51.2 KB · Views: 60
Last edited by a moderator:
Level 32
Joined
Oct 23, 2006
Messages
5,291
At the present time, I have full accesss to the entire site: all forums, resource sections and the chat room. Eight other users are also present there.

Ralle says HE (was) also having problems getting to the chat room,but is now back: check your browser settings (or use another browser) and try it again guys.
 
Level 32
Joined
Oct 23, 2006
Messages
5,291
Indeed.

Many People are experiencing difficulty accessing and staying connected to the chat room tonight. Right now 12 people (besides myself) are present.

Only Ralle can fix the bugs guys. He told me a while ago (via MSN) that it's something or other related to the javascript. He also said he was attending a social gathering tonight and would exterminate the bugs tomorrow (Denmark time).
 
Level 32
Joined
Oct 23, 2006
Messages
5,291
@thepeoplewhocantacsessthechat: What browser are you useing? For me Opera cant acess the chat and firefox can!
You don't say.

...check your browser settings (or use another browser) and try it again guys.
Try installing Mozilla Firefox guys.

For some reason, the site seems to prefer it over I.E. Although I use both, FF usually performs better for the chat room and my moderator tools.

Firefox also uses a separate cach and cookie system, as does Netscape Navigator
 
Level 15
Joined
Nov 1, 2004
Messages
1,058
It didn't work (blank chat page) for me from work on Opera (which I cannot stand, by the way).

But it's working fine for me now at home on Firefox 2.0.0.6.
 
Level 27
Joined
May 30, 2007
Messages
2,872
Code:
function escape2(str) {
    str = str.replace('%','%25');// These are, to my knowledge, the only
    str = str.replace('+','%2B');// characters not properly escaped by escape
    str = escape(str);
    return str;
}
And replace only replaces the first occurence, do this:
Code:
function escape2(str) {
    return escape(str.replace(/%/g,"%25")).replace(/\+/,"%2B");
}
 
Last edited:
Level 40
Joined
Dec 14, 2005
Messages
10,532
It usually doesn't put up the question mark, but the rest of that ralle knows of and I think it can't be fixed, or he just doesn't consider it worth fixing at the moment.

Oh, and wolverabid, shouldn't this be merged with Chat Room Bugs?

[EDIT by Wolve] ~ Threads merged.
 
Last edited by a moderator:
Unabe to enter the Chat

I get this whenever I enter the chat:


Code:
[B]Warning[/B]: array_keys() [[URL="http://www.hiveworkshop.com/forums/function.array-keys"]function.array-keys[/URL]]: The first argument should be an array in [B]/home/hiveworkshop.com/forums_hidden/pages/tools_gochat.php[/B] on line [B]18[/B]

[B]Warning[/B]: implode() [[URL="http://www.hiveworkshop.com/forums/function.implode"]function.implode[/URL]]: Invalid arguments passed in [B]/home/hiveworkshop.com/forums_hidden/pages/tools_gochat.php[/B] on line [B]18[/B]
 
Level 8
Joined
Aug 25, 2007
Messages
327
I get this whenever I enter the chat:


Code:
[B]Warning[/B]: array_keys() [[URL="http://www.hiveworkshop.com/forums/function.array-keys"]function.array-keys[/URL]]: The first argument should be an array in [B]/home/hiveworkshop.com/forums_hidden/pages/tools_gochat.php[/B] on line [B]18[/B]

[B]Warning[/B]: implode() [[URL="http://www.hiveworkshop.com/forums/function.implode"]function.implode[/URL]]: Invalid arguments passed in [B]/home/hiveworkshop.com/forums_hidden/pages/tools_gochat.php[/B] on line [B]18[/B]

Omg, thats happening to me also.
 
Status
Not open for further replies.
Top