FCS-Webmaster
02-12-2008, 04:26 PM
Maybe you need it, maybe you don`t...just your decision.
How often do you see someone and want to tell him something instant, so you go to your private messages write him and boom...he`s offline without reading your message cause he didn`t noticed of not refreshing the site. This is what happens to me a hundred times.
Not all of my users are comfortable with the world wide web or used in it.
So how is this: Log into your website and automatically a IM System opens with all your user and you can send Users a message and boom he gets it really instant!
If you decide to follow the instructions: SAVE YOUR DB for complete backup
How?! It`s really easy! just install this one:
IM php121 (http://www.php121.com/download.php)
But notice this one for integration for a vbulletin board!
IMPORANT FOR VBULLETIN INTEGRATION READ FIRST BEVOR COMPLETE INSTALLING (http://forums.php121.com/viewtopic.php?t=1085&highlight=vbulletin)
If you want to have your own Buddylist integrated you do need a phpfile and a cronjob:
1. the PHP File:
?php
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
if (!is_object($vbulletin->db))
{
exit;
}
// ################################################## ######################
// ######################### START MAIN SCRIPT ############################
// ################################################## ######################
$dbhost = 'localhost';
$dbuname = 'YOURSETTING';
$dbpass = 'YOURSETTING';
$dbname = 'YOURSETTING';
// ?bertrage Buddies von VBulletin an Messenger falls noch nicht vorhanden
$send=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl = "select userid,relationid from userlist order by userid desc";
$erg = mysql_db_query($dbname, $sqlbefehl, $send);
while ($output1=mysql_fetch_array($erg))
{
$send1=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl1 = "select userid,buddyid from imbuddylist where userid = $output1[0] and buddyid = $output1[1]";
$erg1 = mysql_db_query($dbname, $sqlbefehl1, $send1);
if (!$output2=mysql_fetch_array($erg1))
{
$send2=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl2 = "INSERT INTO imbuddylist (userid,buddyid) VALUES('$output1[0]','$output1[1]')";
mysql_db_query($dbname, $sqlbefehl2, $send2);
}
}
// L?sche Buddies von Messenger falls bei VBulletin nicht mehr vorhanden
$send3=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl3 = "select userid,buddyid from imbuddylist order by userid desc";
$erg3 = mysql_db_query($dbname, $sqlbefehl3, $send3);
while ($output3=mysql_fetch_array($erg3))
{
$send4=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl4 = "select userid,relationid from userlist where userid = $output3[0] and relationid = $output3[1]";
$erg4 = mysql_db_query($dbname, $sqlbefehl4, $send4);
if (!$output4=mysql_fetch_array($erg4))
{
$send5=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl5 = "delete from imbuddylist where userid = '".$output3[0]."' and buddyid = '".$output3[1]."'";
mysql_db_query($dbname, $sqlbefehl5, $send5);
}
}
// Tell that Cronjob is completed
log_cron_action('Buddies_to_IM', $nextitem);
?>
NOTE:Replace YOUSETTING with your settings of the database name, admin and password. Also I do not use any prefixes! Save this file as cron_phpmessenger.php in includes/cron.
2. The Cron
To have this running you need a cron. Go to your ACP -> Crons -> Add
Name: Buddies_to_IM
Title: Buddies_to_IM
Description: Your Buddies in the IM
For all Time settings (day, hour, minute, etc) use the stars.
Active: Yes
Logs:Yes
Filename: ./includes/cron/cron_phpmessenger.php
Add on: vbulletin
Save & Done.
Cause I don`t get the Autologin to run (description follows below at least of the post), I do have another solution. So on login (vb) the IM popsup and you have to login with the same details of your vb login.
3. Automatic Popup (NOT AUTOLOGIN)
Go to login.php and find:
// create new session
process_new_login($vbulletin->GPC['logintype'], $vbulletin->GPC['cookieuser'], $vbulletin->GPC['cssprefs']);
add below:
// login to IM
echo "<script language=\"JavaScript\">newwindow = window.open('./php121/php121im.php', 'name', 'height=400, width=200, left=20, top=20, toolbar=no, menubar=no, directories=no, location=no, scrollbars=no, status=no, resizable=yes, fullscreen=no'); if (newwindow.focus) {window.focus()};</script>";
If there is someone out with a better solutions I will be pleased for it! I`m a really n00b in this. Th one here works fine for me 3.6.8PL2 so no garantuee for anything.
If theres someone out with a good knowledge of programming please have a look on this code and try to convert it for vbulletin bords: Autologgin (http://forums.php121.com/viewtopic.php?t=150&highlight=vbulletin)
How often do you see someone and want to tell him something instant, so you go to your private messages write him and boom...he`s offline without reading your message cause he didn`t noticed of not refreshing the site. This is what happens to me a hundred times.
Not all of my users are comfortable with the world wide web or used in it.
So how is this: Log into your website and automatically a IM System opens with all your user and you can send Users a message and boom he gets it really instant!
If you decide to follow the instructions: SAVE YOUR DB for complete backup
How?! It`s really easy! just install this one:
IM php121 (http://www.php121.com/download.php)
But notice this one for integration for a vbulletin board!
IMPORANT FOR VBULLETIN INTEGRATION READ FIRST BEVOR COMPLETE INSTALLING (http://forums.php121.com/viewtopic.php?t=1085&highlight=vbulletin)
If you want to have your own Buddylist integrated you do need a phpfile and a cronjob:
1. the PHP File:
?php
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
if (!is_object($vbulletin->db))
{
exit;
}
// ################################################## ######################
// ######################### START MAIN SCRIPT ############################
// ################################################## ######################
$dbhost = 'localhost';
$dbuname = 'YOURSETTING';
$dbpass = 'YOURSETTING';
$dbname = 'YOURSETTING';
// ?bertrage Buddies von VBulletin an Messenger falls noch nicht vorhanden
$send=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl = "select userid,relationid from userlist order by userid desc";
$erg = mysql_db_query($dbname, $sqlbefehl, $send);
while ($output1=mysql_fetch_array($erg))
{
$send1=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl1 = "select userid,buddyid from imbuddylist where userid = $output1[0] and buddyid = $output1[1]";
$erg1 = mysql_db_query($dbname, $sqlbefehl1, $send1);
if (!$output2=mysql_fetch_array($erg1))
{
$send2=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl2 = "INSERT INTO imbuddylist (userid,buddyid) VALUES('$output1[0]','$output1[1]')";
mysql_db_query($dbname, $sqlbefehl2, $send2);
}
}
// L?sche Buddies von Messenger falls bei VBulletin nicht mehr vorhanden
$send3=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl3 = "select userid,buddyid from imbuddylist order by userid desc";
$erg3 = mysql_db_query($dbname, $sqlbefehl3, $send3);
while ($output3=mysql_fetch_array($erg3))
{
$send4=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl4 = "select userid,relationid from userlist where userid = $output3[0] and relationid = $output3[1]";
$erg4 = mysql_db_query($dbname, $sqlbefehl4, $send4);
if (!$output4=mysql_fetch_array($erg4))
{
$send5=mysql_connect ($dbhost,$dbuname,$dbpass);
mysql_select_db($dbname);
$sqlbefehl5 = "delete from imbuddylist where userid = '".$output3[0]."' and buddyid = '".$output3[1]."'";
mysql_db_query($dbname, $sqlbefehl5, $send5);
}
}
// Tell that Cronjob is completed
log_cron_action('Buddies_to_IM', $nextitem);
?>
NOTE:Replace YOUSETTING with your settings of the database name, admin and password. Also I do not use any prefixes! Save this file as cron_phpmessenger.php in includes/cron.
2. The Cron
To have this running you need a cron. Go to your ACP -> Crons -> Add
Name: Buddies_to_IM
Title: Buddies_to_IM
Description: Your Buddies in the IM
For all Time settings (day, hour, minute, etc) use the stars.
Active: Yes
Logs:Yes
Filename: ./includes/cron/cron_phpmessenger.php
Add on: vbulletin
Save & Done.
Cause I don`t get the Autologin to run (description follows below at least of the post), I do have another solution. So on login (vb) the IM popsup and you have to login with the same details of your vb login.
3. Automatic Popup (NOT AUTOLOGIN)
Go to login.php and find:
// create new session
process_new_login($vbulletin->GPC['logintype'], $vbulletin->GPC['cookieuser'], $vbulletin->GPC['cssprefs']);
add below:
// login to IM
echo "<script language=\"JavaScript\">newwindow = window.open('./php121/php121im.php', 'name', 'height=400, width=200, left=20, top=20, toolbar=no, menubar=no, directories=no, location=no, scrollbars=no, status=no, resizable=yes, fullscreen=no'); if (newwindow.focus) {window.focus()};</script>";
If there is someone out with a better solutions I will be pleased for it! I`m a really n00b in this. Th one here works fine for me 3.6.8PL2 so no garantuee for anything.
If theres someone out with a good knowledge of programming please have a look on this code and try to convert it for vbulletin bords: Autologgin (http://forums.php121.com/viewtopic.php?t=150&highlight=vbulletin)