Version: 1.00, by Zachery
Developer Last Online: May 2017
Version: Unknown
Rating:
Released: 09-28-2003
Last Update: Never
Installs: 9
No support by the author.
version update!
this mod will allow you to connect to any irc network that you have a chanel on
automaticlly picks up a registered username
if no registered username is found it uses Guest plus 3 random numbers
will strip usernames to meet irc requirements
smilies are now on by default
nickbox on by default
version 2.0.1
missed a small line of code to turn smiles on by default, if you dont want them on by deafult dont bother, if you do want to have smiles on by default change the following
find
PHP Code:
<param name="bitmapsmileys" value="true">
add this above
PHP Code:
<param name="smileys" value="true">
smilies will now work
ugrade instructions
re-install ^^
next version should be configurable via ACP
fyi this is more of a template mod than anything eles
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Warning: chdir(): No such file or directory (errno 2) in /home/www/humori.net/chat/index.php on line 3
Warning: main(/global.php): failed to open stream: No such file or directory in /home/www/humori.net/chat/index.php on line 5
Warning: main(/global.php): failed to open stream: No such file or directory in /home/www/humori.net/chat/index.php on line 5
Fatal error: main(): Failed opening required '/global.php' (include_path='.:/usr/local/lib/php') in /home/www/humori.net/chat/index.php on line 5
i get an errorr to any ideas why??
index.php file permissions 755 containing information as above
<?php
// ## Changes Directory so it can accesss vBulletin ##
chdir("/humori.net/forumi/");
// ## Grabs global.php ##
require("/global.php");
// ## yeap what it says ##
define('NO_REGISTER_GLOBALS', 1);
// ## defines this script as chat if you use phpinclude_start for this page at all ##
define('THIS_SCRIPT', 'chat');
// ## Removes Non Alpha Numeric charaters except for a space ##
$nonalnum = ereg_replace("[^ [:alnum:]]", "", $bbuserinfo[username]);
// ## Strips spaces from the name if any are found ##
$chatname = ereg_replace(" ", "_", $nonalnum);
// ## Strips spaces from the name if any are found ##
// $chatname = ereg_replace("__", "_", $strpdsh);
// ## prints out the chat template ##
eval('print_output("' . fetch_template('chat') . '");'); //
?>
--------------------------------------------------------------------------
also tried the following paths to the forum ("/humori.net/") , ("home/www/humori.net/") ("home/www/humori.net/forumi") etc and it still doesnt work any clues what i might have done wrong :disappointed: