TURBO CHAT 4.2
"ADD CUSTOMIZABLE TEXT, VOICE & VIDEO CHATS TO WEBSITES"
Chat script with video and voice calls that works on shared web hosting with just PHP!   
TURBO CHAT EDITIONS
BASIC
PROFESSIONAL
VIDEO & VOICE CHAT
COMPARE EDITIONS
DOWNLOAD

INSTRUCTIONS
INSTALLATION
REQUIREMENTS
CUSTOMIZATION
INTEGRATION
ADMIN PANEL
VIDEO & VOICE CALLS
MORE SKINS
CONTACT US
SITE INTEGRATION GUIDE
MEMBER AUTO-LOGIN
If you have a site with a CMS, forum, dating script or anything else with member accounts, then you have the ability to skip the chat's login form and members are automatically connected with their registered username and profile picture.

AUTO-LOGIN DEMO
This demo connects you automatically into our demo chat room as user John with the picture wolverine.gif. Note that the login form is skipped.

Demo: Login as member John »

INTEGRATION PROCEDURE
Every CMS, forum, dating script or any other PHP based system with member accounts, uses PHP session variables to temporarily store the member's username and profile picture data when they log into your site. You will need to locate those session variables in the PHP source code of your system and pass the data stored inside them to the chat client ( chat.swf ) using FlashVars. When done correctly, the member will automatically connect to the chat room and the initial login form will be skipped. Read the code example below to find out how.

CODE EXAMPLE
The code below is a standard Flash object embed code for placing the chat client ( chat.swf ) into your website. To pass the data from the PHP session variables directly to the chat client, you need to add the PHP code highlighted in orange. The $user and $picture variables in the orange code need to be populated with the data from the session variables. Make sure the page with the chat client ends with .php and not .html since we are using PHP code.

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="860" height="550" align="middle">
<param name="allowScriptAccess" value="sameDomain">
<param name="allowFullScreen" value="false">
<param name="movie" value="chat.swf?username=<?PHP echo $user ?>&picture=<?PHP echo $picture ?>">
<param name="menu" value="false">
<param name="quality" value="best">
<param name="bgcolor" value="#2D2D2D">
<embed src="chat.swf?username=<?PHP echo $user ?>&picture=<?PHP echo $picture ?>" menu="false" quality="best" bgcolor="#2D2D2D" width="860" height="550" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer">
</object>

   © 2009 -2011 by Mindprobe Web-Innovations  |  Contact Us