hi can help me?I chat visichat 2.6.0.I would like to integrate chat visichat 2.6.0 a oxwall.
then chat takes user data from db Oxwall or contrary.
thanks
hi can help me?I chat visichat 2.6.0.I would like to integrate chat visichat 2.6.0 a oxwall.
then chat takes user data from db Oxwall or contrary.
thanks
They do not care to develop for the 2.6.0.
have Oxwall integration, but only release for new version 3.1.0 onwards.
They do not care to develop for the 2.6.0.
have Oxwall integration, but only release for new version 3.1.0 onwards.
They do not care to develop for the 2.6.0.
have Oxwall integration, but only release for new version 3.1.0 onwards.
I have 3.1.0 Where do you find oxwall integration for this ?
Great information Francesco, Thanks !!!
They do not care to develop for the 2.6.0.
have Oxwall integration, but only release for new version 3.1.0 onwards.
I have 3.1.0 Where do you find oxwall integration for this ?
http://wiki.gchats.com/index.php/Visichat_Integration_with_Oxwall
by Gchats as they say, even on separate servers can integrate, I have not tried it yet, but make example of their hosting chat,
but this applies to 3.1.0.
any suggestions ???
hello, I do not know what you've done, if you explain to me the steps ... I can help you.
I need to know and chat site url to integrate.
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
</IfModule>
DirectoryIndex index.php
Options -Indexes
I was having an issue with Visichat integration on my site and Francesco was kind enough to actually take the time and come to my site and work with me in reference to the integration and we got it done.
He is an amazing help and in my opinion should be working for Oxwall !
Excellent assistance Francesco
Thank You !!
hello tammy,
what are you talking about?
integration visichat 2.6.0 or 3.1.0?
thanks you
second step: If you have this path: /etc/init.d/red5
commands used to red5 are:
------------------------------------------
1-status: # /etc/init.d/red5 status
1-start: # /etc/init.d/red5 start
1-restart: # /etc/init.d/red5 restart
--------------------------------------------
I suggest if you do not restart the red5, repeating several times these three commands:
# killall java
# killall bash
# /etc/init.d/red5 start
I suggest you consult this:
http://wiki.gchats.com/index.php/Video_Chat_Troubleshooting
I hope that what I posted is worthwhile and can you can activate when visichat before, needless to pursue integration oxwall if the chat does not work
<?php
// visichat 3.1.0 Oxwall integration
chdir ("..");
define('_OW_', true);
define('DS', DIRECTORY_SEPARATOR);
define('OW_DIR_ROOT', dirname(__FILE__) . DS . ".." . DS);
require_once(OW_DIR_ROOT . 'ow_includes' . DS . 'init.php');
@include OW_DIR_ROOT . 'ow_install' . DS . 'install.php';
OW::getSession()->start();
$application = OW::getApplication();
$application->init();
$user = OW::getUser()->getUserObject();
require_once dirname ( __FILE__ ) . DS . "config.php";
// Get current user
$userId = $user->id;
$username = $user->username;
$password = $user->password;
$email = $user->email;
// If user is a visitor
if ( $password == "" )
{
$username = $email = $userId = "";
}
require_once dirname ( __FILE__ ) . DS . "config.php";
// Verify the username and password
if ( isset ( $_POST["ac"] ) )
{
if ( $_POST["ac"] == "verify" )
{
$username = $_POST["username"];
$password = $_POST["password"];
$user = BOL_UserService::getInstance()->findByUsername ( $username );
if ( md5 ( $user->password ) == $password || BOL_UserService::getInstance()->hashPassword ( $password ) == $user->password )
{
// Check if username exists
$result = array ("id" => $user->id , "email" => $user->email );
echo json_encode ( $result );
die();
}
}
// On failure login
die("no");
}
?><html><title><?php echo $chatTitle; ?></title>
<body style="margin:0px;">
<script src="<?php echo $chatURL; ?>scripts/js/swfobject.js" type="text/javascript"></script>
<script type="text/javascript" src="<?php echo $chatURL; ?>scripts/embed.php?username=<?php echo $username;?>&password=<?php echo md5 ( $password );?>&ln=<?php echo $language; ?>"></script>
</body>
</html>