• 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.
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!
  • ✅ The POLL for Hive's Texturing Contest #34 is OPEN! Vote for the TOP 3 SKINS! 🔗Click here to cast your vote!
  • ✅ The POLL for Hive's Techtree Contest #20 is OPEN! Vote for the TOP 3 FACTIONS! 🔗Click here to cast your vote!

Chat system bugs

Status
Not open for further replies.
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: 85
  • ChatGlitchPic2.jpg
    ChatGlitchPic2.jpg
    51.2 KB · Views: 66
Last edited by a moderator:
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.
 
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).
 
@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
 
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.
 
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:
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="https://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="https://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]
 
I get this whenever I enter the chat:


Code:
[B]Warning[/B]: array_keys() [[URL="https://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="https://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.
Back
Top