AjaxChat Integration (latest version 3.2.1)

Started by .HuNTeR., August 27, 2008, 12:59:06 AM

Previous topic - Next topic

m1993

#7540
It this works on SMF RC4?

Jeet Chowdhury


Bugo


Jeet Chowdhury


italo_anonimo

How to open only shoutbox (no chat) in new webpage from tab option??

flegg

Hi there

I've just installed SMF on my webserver with the most recent version of the Ajax Chat Integration (3.2.1)

here are the details of the installations


Version Information:
Forum version: SMF 1.1.12
Current SMF version: SMF 1.1.12
PHP version: 4.4.9
MySQL version: 4.1.22-standard
Server version: Apache/1.3.41 (Unix) PHP/5.2.9 mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.31 OpenSSL/0.9.7a
GD version: bundled (2.0.28 compatible)

When it installs, there are no errors and seems to complete without issue, but when I go to features and options there are no options for the chat/shout box. The tick boxes are there, but no text so I don't know what I'm ticking and unticking. The same is under permissions, there are about 6 tick boxes, but no text so not sure what I'm enabling. Also the chat link across the top is also missing.

I've tried unisntalling and reinstalling and also tried the RC3 curve compatible version but that didn't work either

any suggestions?

thanks peeps!

Flegg

Basinator

Brack1:

Quote from: Basinator on January 20, 2011, 05:19:24 PM
Thanks for the suggestion, but I tried my luck now but I didn't find something useful. Maybe I just use the wrong phrases...if you give me a link I will study by myself then before I ask you again...:P

Thanks for your time.

shackles

Hi, i want to move position on my ajaxchat, instead of it being at the top of page i want it to be at the bottom. What do i have to modify in index.template or boardindex.template

I also want to change the backgorund colour of the chat, and it letter colour, i have changed all the shoutbox.css but it didnt work...

Any comments will be usefull.
Thank You all.

basis

#7548
I've managed to install the latest AjaxChat and it works great on my SMF 1.1.12

I wanted to try some simple tweaks but have not gotten any to work.
For instance I tried some that mrtrc266 suggested in the FAQ.
"To have ONLY the Public Room avaliable in the Channel List, change the array to 0." & "You can also change the name of the Public Channel to something like "YourForums Lounge" Find and change Public to whatever you like."

I edited the config.php file but the changes don't seem to affect the Chat. Is there something that I am missing here? File permission was set to 755 i think. Can anyone help or is there no longer any support for this mod?

edit: DOH! was woking in the wrong folder. my bad. the edits worked great! AWESOME MOD! Considering i couldn't get Simple Portal's shoutbox to work, this is even better!
SMF Version: Ver 2.0.8
Running Mods:
SimplePortal v2.3.5 (disabled)
AEVA 7.2 (enabled)
Stop Spammer 2.3.9 (disabled)
Bad Behaviour mod 1.5.17 (disabled)

Jeet Chowdhury

#7549
i get this error when open table_2.php


Database Error
No database selected
File: C:\xampp\htdocs\myforum5\Tables_2.php
Line: 12


using 2.0 rc4.

Jeet Chowdhury

im thinking if its possible to convert .php to sql command then run via myphpadmin. Will that work?

Can any one post the .sql code?

hcfwesker

#7551
Quote from: flegg on January 26, 2011, 05:26:46 PM
When it installs, there are no errors and seems to complete without issue, but when I go to features and options there are no options for the chat/shout box. The tick boxes are there, but no text so I don't know what I'm ticking and unticking. The same is under permissions, there are about 6 tick boxes, but no text so not sure what I'm enabling. Also the chat link across the top is also missing.

I've tried unisntalling and reinstalling and also tried the RC3 curve compatible version but that didn't work either

any suggestions?

Yup!  Goto Admin > Server Settings  , and see what your Default Forum language is.  Change it from English-utf8 to just "English"

If you can't change the default language, then goto your Themes/default/languages/ folder and rename your  Shout.english.php  file to ...  Shout.english-utf8.php

lisandro

i use 2.0RC4 after install . i have this problem  :'(
QuoteUnable to load the 'shout_above' template.

Jeet Chowdhury

got it worked with rc4.

here is mysql code for having database error,


DROP TABLE IF EXISTS `ajax_chat_online`;
DROP TABLE IF EXISTS `ajax_chat_messages`;
DROP TABLE IF EXISTS `ajax_chat_bans`;
DROP TABLE IF EXISTS `ajax_chat_invitations`;
DROP TABLE IF EXISTS `ajax_shout_online`;
DROP TABLE IF EXISTS `ajax_shout_messages`;
DROP TABLE IF EXISTS `ajax_shout_bans`;
DROP TABLE IF EXISTS `ajax_shout_invitations`;
DROP TABLE IF EXISTS `smf_ajaxchat_online`;
DROP TABLE IF EXISTS `smf_ajaxchat_messages`;
DROP TABLE IF EXISTS `smf_ajaxchat_bans`;
DROP TABLE IF EXISTS `smf_ajaxchat_invitations`;

CREATE TABLE `smf_ajaxchat_online` (
    `userID` INT(11) NOT NULL,
    `userName` VARCHAR(64) NOT NULL,
    `userRole` INT(1) NOT NULL,
    `channel` INT(11) NOT NULL,
    `dateTime` DATETIME NOT NULL,
    `ip` VARBINARY(16) NOT NULL
) ENGINE=MyISAM;

CREATE TABLE smf_ajaxchat_messages (
    `id` INT(11) NOT NULL AUTO_INCREMENT,
    `userID` INT(11) NOT NULL,
    `userName` VARCHAR(64) NOT NULL,
    `userRole` INT(1) NOT NULL,
    `channel` INT(11) NOT NULL,
    `dateTime` TIMESTAMP NOT NULL,
    `ip` VARBINARY(16) NOT NULL,
    `text` TEXT,
    PRIMARY KEY (`id`)
) ENGINE=MyISAM;

CREATE TABLE smf_ajaxchat_bans (
    `userID` INT(11) NOT NULL,
    `userName` VARCHAR(64) NOT NULL,
    `dateTime` DATETIME NOT NULL,
    `ip` VARBINARY(16) NOT NULL
) ENGINE=MyISAM;

CREATE TABLE smf_ajaxchat_invitations (
    `userID` INT(11) NOT NULL,
    `channel` INT(11) NOT NULL,
    `dateTime` TIMESTAMP NOT NULL
) ENGINE=MyISAM;

DROP TABLE IF EXISTS `smf_ajaxshout_online`;
DROP TABLE IF EXISTS `smf_ajaxshout_messages`;
DROP TABLE IF EXISTS `smf_ajaxshout_bans`;
DROP TABLE IF EXISTS `smf_ajaxshout_invitations`;

CREATE TABLE smf_ajaxshout_online (
    `userID` INT(11) NOT NULL,
    `userName` VARCHAR(64) NOT NULL,
    `userRole` INT(1) NOT NULL,
    `channel` INT(11) NOT NULL,
    `dateTime` DATETIME NOT NULL,
    `ip` VARBINARY(16) NOT NULL
) ENGINE=MyISAM;

CREATE TABLE smf_ajaxshout_messages (
    `id` INT(11) NOT NULL AUTO_INCREMENT,
    `userID` INT(11) NOT NULL,
    `userName` VARCHAR(64) NOT NULL,
    `userRole` INT(1) NOT NULL,
    `channel` INT(11) NOT NULL,
    `dateTime` DATETIME NOT NULL,
    `ip` VARBINARY(16) NOT NULL,
    `text` TEXT,
    PRIMARY KEY (`id`)
) ENGINE=MyISAM;

CREATE TABLE smf_ajaxshout_bans (
    `userID` INT(11) NOT NULL,
    `userName` VARCHAR(64) NOT NULL,
    `dateTime` DATETIME NOT NULL,
    `ip` VARBINARY(16) NOT NULL
) ENGINE=MyISAM;

CREATE TABLE smf_ajaxshout_invitations (
    `userID` INT(11) NOT NULL,
    `channel` INT(11) NOT NULL,
    `dateTime` DATETIME NOT NULL
) ENGINE=MyISAM;




here is ss...


btw how to stop /nick command??

lisandro

i can't login to admin panel and every page.

Jeet Chowdhury

is intrigrated with smf removal is legal? if yes how to do that?

btw bro which version of smf u using??? and capcha not showing after chatmod.

lisandro


hcfwesker

#7557
Quote from: Jeet Chowdhury on January 29, 2011, 11:01:55 PM
btw how to stop /nick command??


Under chat/lib/config.php  ... there'll be a question about users able to change their nickname, change 'true' to 'false'

Find
// Allow/Disallow users to change their userName (Nickname):
$config['allowNickChange'] = true;

Jeet Chowdhury

u need to instaall it manually brother. and i figure out how to disable nick command. exelent shoutbox. but captcha nt working now.

bro u use smf parser to install.

hcfwesker

Trying to figure something out.  Is it possible to have a static message to always show at top?  Either a chat message that doesn't erase, or a text above the chat box itself?

Advertisement: