Log in

View Full Version : Flashchat help



Carlsta
18-12-2007, 04:18 PM
My mate deleted my flashchat.php and i need it back :P
but he erased it frm recycle bit lol
anyone able to upload it?

Invent
18-12-2007, 04:26 PM
Redownload it from vB.org :)

Carlsta
18-12-2007, 04:29 PM
It's not on there...
Im on about this flashchat

http://www.tufat.com/s_flash_chat_chatroom.htm

Jordy
18-12-2007, 05:20 PM
Found it on my computer, there's not very much to it at all.

Create a file called flashchat.php and copy and paste this into it:

<?php
require_once('inc/common.php');

$id = 'flashchat';

$params = array();

if(isset($_REQUEST['username']) && !isset($_REQUEST['flash_login'])) {
if($_REQUEST['username'] == '__random__') $_REQUEST['username'] = 'user_' . time();
if(!isset($_REQUEST['lang'])) $_REQUEST['lang'] = $GLOBALS['fc_config']['defaultLanguage'];
if(!isset($_REQUEST['password'])) $_REQUEST['password'] = '';
if(!isset($_REQUEST['room'])) $_REQUEST['room'] = 0;

$params = array_merge($params, array(
'login' => $_REQUEST['username'],
'password' => $_REQUEST['password'],
'lang' => $_REQUEST['lang'],
'room' => $_REQUEST['room']
));
}
?>
<html>
<head>
<title>FlashChat v<?php echo $GLOBALS['fc_config']['version']?></title>
<script type="text/javascript">
function showLogger() {
win = window.open("logger.php", "logger", "width=500,height=400,left=0,top=0,location=no,menu bar=no,resizable=yes,scrollbars=no,status=no,toolb ar=no");
win.focus();
}
<?php if($GLOBALS['fc_config']['debug']) {?>showLogger();<?php } ?>
</script>

<script language="JavaScript" type='text/javascript' src="javascript/ActivateFlash.js"></script>
</head>

<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" scroll="no">
<center><?php echo flashChatTag('100%', '100%', $params)?></center>
</body>
</html>That's it...

Invent
18-12-2007, 05:22 PM
Ah, sorry! I thought you were taking about the vBulletin addon :P My mistake!

Jordy
18-12-2007, 05:26 PM
Ah, sorry! I thought you were taking about the vBulletin addon :P My mistake!Your not entirely wrong, Flashchat can be intergrated into nearly all the big CMS's like Mambo, PHPBB and of course vBulletin as a add-on ;)

You can see all the CMS's it supports at the bottom of this (http://www.tufat.com/s_flash_chat_chatroom.htm) page. Highly recommend Flashchat to anyone.

Carlsta
18-12-2007, 07:17 PM
Found it on my computer, there's not very much to it at all.

Create a file called flashchat.php and copy and paste this into it:

<?php
require_once('inc/common.php');

$id = 'flashchat';

$params = array();

if(isset($_REQUEST['username']) && !isset($_REQUEST['flash_login'])) {
if($_REQUEST['username'] == '__random__') $_REQUEST['username'] = 'user_' . time();
if(!isset($_REQUEST['lang'])) $_REQUEST['lang'] = $GLOBALS['fc_config']['defaultLanguage'];
if(!isset($_REQUEST['password'])) $_REQUEST['password'] = '';
if(!isset($_REQUEST['room'])) $_REQUEST['room'] = 0;

$params = array_merge($params, array(
'login' => $_REQUEST['username'],
'password' => $_REQUEST['password'],
'lang' => $_REQUEST['lang'],
'room' => $_REQUEST['room']
));
}
?>
<html>
<head>
<title>FlashChat v<?php echo $GLOBALS['fc_config']['version']?></title>
<script type="text/javascript">
function showLogger() {
win = window.open("logger.php", "logger", "width=500,height=400,left=0,top=0,location=no,menu bar=no,resizable=yes,scrollbars=no,status=no,toolb ar=no");
win.focus();
}
<?php if($GLOBALS['fc_config']['debug']) {?>showLogger();<?php } ?>
</script>

<script language="JavaScript" type='text/javascript' src="javascript/ActivateFlash.js"></script>
</head>

<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" scroll="no">
<center><?php echo flashChatTag('100%', '100%', $params)?></center>
</body>
</html>That's it...

Thank you it now works :D My fool of a friend deleted it :D
http://www.carlstac.com/chat/flashchat.php


Ah, sorry! I thought you were taking about the vBulletin addon :P My mistake!

Thats ok :P

+rep to both and Thread closed!

Want to hide these adverts? Register an account for free!