101

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Hello,

My forum is online since 3 month ... it's not a problem of SQL config hmm

102

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

I have

    * PHP: 5.2.10
    * MySQL Standard 5.0.67

Help me ...

103

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Any idea how to make chatlite under forums and categories?

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Please can someone  link to a working example of this?

105

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

http://wiiem.pl/forum/

106

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Nevethir wrote:

http://wiiem.pl/forum/

Hello !

Nice work !!

Could you put your extension files here ? Your southbox il very good !

Thank a lots !

107 (edited by N3twork2 2009-08-27 20:53)

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

N3twork2 wrote:

Hello,

I have error :

Error: unable to establish connection.

Why ?
I use punbb 1.3.4

Thanks a lot !

Help !!

108

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

N3twork2 wrote:
N3twork2 wrote:

Hello,

I have error :

Error: unable to establish connection.

Why ?
I use punbb 1.3.4

Thanks a lot !

Help !!

Same problem.

But sometimes, it sends my messages.

109

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Somebody have a solution for this bug ?

Thanks !

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Hi loving your script but im having problems with the whole IE8 and Firefox thing, works fine in firefox but when viewing in IE the background goes seethru and hard to read as seen at http://perryvault.co.uk/thefew/?forum   if you hit compatibility mode it works fine tho.

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Sorry if I revived a dead thread, but is there any chance of getting some help on getting this installed in the footer of the index?
replacing $forum_head with $forum_footer, in xml doesnt work.

112

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Look here for an example: www.weeboo.fr
It is possible, for the help look here: http://punbb.informer.com/forums/topic/ … -by-daris/

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Thank you lbouriez.
Unfortunatelly we don't have portals in the forum due to popular demand of keeping it open.

We used to have the chatbox on the bottom of the index in punBB1.2.17 but after merging to 1.3.4 we have to rely on a different extention.
Still can't figure it out. >_<

114

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

I don't remember how i did that, i will look my files this evening and tell you.
If you change the style on weeboo.fr, you put oxygen, you will see the chatbox at the top of index.
I guess you can easily put it at the bottom.
I will have a look and tell you later smile

115

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

I will just copy/past my code because i really don't remember how i did that^^
The css file from your style: (mine is oxygen.css or copper.css depends of the style)

#ek_chatLite {
/*width:240px;
top:215px;
left:0px;
position:fixed;*/
}

#ek_chatLite .chatBox {
    background-color:#f4f9fd;
    border-color:#cbd1d8;
    border-style:solid;
    border-width:1px;
}

#ek_chatLite .chatContent {
    height:200px;
    color:#00579c;
}

.chatBox input {
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    border: 1px solid #CCC;
    font-size: 13px;
    background-color: #296fa5;
}

.chatBox input:hover {
    background-color: #FFF;
}

.chatBox input:focus {
    border: 1px solid #000;
    background-color: #FFF;
}

The manifest file from chat box, i just change this line:

    <hooks>
        <hook id="hd_head" priority="4"><![CDATA[

// add javascript and style files on the Index
if(substr(FORUM_PAGE, 0, 6) != 'admin-') {
//if(!$forum_user['is_guest']) { // this will remove the chat for users that aren't logged in
//    if($forum_user['g_id'] != $forum_config['o_default_user_group']) { // this removes the chat for the default group, but leaves it for every other group
        $forum_head['prototypejs'] = '<script type="text/javascript" src="'.$ext_info['url'].'/media/js/prototype.js"></script>';
if ($forum_user['style'] === 'Copper')
        $forum_head['ek_chatlitejs'] = '<script type="text/javascript" src="'.$ext_info['url'].'/media/js/chat_small.js?logged='.(($forum_user['is_guest']) ? 0 :(($forum_user['is_admmod']) ? 2 : 1)).'&amp;baseUri='.$base_url.'/&amp;extUri='.$ext_info['url'].'/"></script>';
else
        $forum_head['ek_chatlitejs'] = '<script type="text/javascript" src="'.$ext_info['url'].'/media/js/chat_std.js?logged='.(($forum_user['is_guest']) ? 0 :(($forum_user['is_admmod']) ? 2 : 1)).'&amp;baseUri='.$base_url.'/&amp;extUri='.$ext_info['url'].'/"></script>';

        if (file_exists($ext_info['path'].'/media/js/lang/'.$forum_user['language'].'.js')) {
            $forum_head['ek_chatlitelangjs'] = '<script type="text/javascript" src="'.$ext_info['url'].'/media/js/lang/'.$forum_user['language'].'.js"></script>';
        } else {
            $forum_head['ek_chatlitelangjs'] = '<script type="text/javascript" src="'.$ext_info['url'].'/media/js/lang/English.js"></script>';
        }

        $ek_chatlite_css = (file_exists($ext_info['path'].'/media/css/'.$forum_user['style'].'.css')) ? $forum_user['style'] : 'default';
        $forum_head['style_ek_chatlite'] = '<link rel="stylesheet" type="text/css" media="screen" href="'.$ext_info['url'].'/media/css/'.$ek_chatlite_css.'.css" />';
//    } // comment out this bracket if you remove the default group portion above
//} // comment out this bracket if you remove the guest (users not logged in) portion above
} // 
        ]]></hook>

But this, i think you don't need smile to change, it was just for allow everyone to see the chat but guest can't talk, just read.

116

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

If it doesn't work with that, let me know, i will search more in my code smile

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Sweet deal. You're a champ!
I will have a look at the code later today because I have to get other things done.

Thank you again!

118

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

smile
let me know if it works or not.

119

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Kudos! i was looking for exactly this and it works perfectly and smooth. Now I'd like to suggest to make a script that would post RSS updates from sources i define myself, so that for example the news would always be posted directly at the chat. Is it possible to write such a script?

Regards APR

120

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Quick note/warning about this extension: the chat box makes http requests every 10s to keep the chat updated, which may alarm your hosting service. A number of users were recently IP banned by our hosting service because they thought the chat box's requests were security threats.

121

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Hello

Somebody have run ChatLite ?  sad

122

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Here: http://www.weeboo.fr/
Working smile

123

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

lbouriez wrote:

Here: http://www.weeboo.fr/
Working smile

Merci c'est super mais j'ai pas de portal  hmm Sais tu comment faire pour le mettre en index ?

Egalement a tu fait des modif aux fichiers ? car cela ne fonctionne pas apparemment

Merci smile

124

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

J ai pas de portal, on est directement ur l index du forum punbb, j ai installé l'extension et hop, après si tu as des thèmes sur le forum tu adaptes la position via le css. Quel est ton problème?

125

Re: [Release] ChatLite v0.5.1 (javascript chat on forum index)

Coucou

Merci de ta réponse, le souci c'est que quand j'envoi un message rien ne se passe. sad ca me marque error to etablish connection !