and with this as well plz

Status
Not open for further replies.

nelly27

Active Member
101
2008
0
0
hi all again i am after adding a video chat room to my forum it say this:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<p>Check the code of this page and select / copy the code between &lt;!--the chat code starts here--&gt; and &lt;!--the chat code ends here--&gt; <br>
Then paste this piece of code into your own site. Go to <a href="http://www.mediacast.nu/chatroomsoftware.html">http://www.mediacast.nu/chatroomsoftware.html</a> for more info and options. </p>
<?
$swf = '';
if (isset($_REQUEST['auto_login']) && $_REQUEST['auto_login'] == 1)
{
$swf .= '?auto_login=1';
$swf .= '&nick='.urlencode($_REQUEST['nick']);
$swf .= '&type='.urlencode($_REQUEST['type']);
}
?>
<script language="JavaScript">
function phonecode(code)
{
var v = window.open("http://izicams.com/izicams/phonecode.php?code="+code, 'phonecode', 'width=400,height=300');
v.focus();
}
</script>
</p>
</p>
<div style="text-align:center">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="730" height="550" align="middle">
<param name="allowScriptAccess" value="always" />
<param name="movie" value="http://izicams.com/izicams/flash/chat.swf<?=$swf?>" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="http://izicams.com/izicams/flash/chat.swf<?=$swf?>" quality="high" bgcolor="#ffffff" width="730" height="550" align="middle" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
<!--the chat code ends here-->
</div>
</body>
</html>

now i tryed to add it to my site by puting it in my header but then got an error after a bit of thinking i think it would be to big for my header but dont no where i am meant to but it so wanted to as one of you nice guys on here do you no where it is ment to go and thanks
 
4 comments
Questions:-
Where are you adding this ?
What forum script are you using ?

That is HTML.. You need to enable HTML 1st in ur forum to make it work..
 
not to be ungratefull but i say at the top it is for a video webcam chatroom it just add it to your site and the last one i added it was for my chat on my warez site it says you only need the bit in the middle e.g
<?
$swf = '';
if (isset($_REQUEST['auto_login']) && $_REQUEST['auto_login'] == 1)
{
$swf .= '?auto_login=1';
$swf .= '&nick='.urlencode($_REQUEST['nick']);
$swf .= '&type='.urlencode($_REQUEST['type']);
}
?>
<script language="JavaScript">
function phonecode(code)
{
var v = window.open("http://izicams.com/izicams/phonecode.php?code="+code, 'phonecode', 'width=400,height=300');
v.focus();
}
</script>
</p>
</p>
<div style="text-align:center">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="730" height="550" align="middle">
<param name="allowScriptAccess" value="always" />
<param name="movie" value="http://izicams.com/izicams/flash/chat.swf<?=$swf?>" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="http://izicams.com/izicams/flash/chat.swf<?=$swf?>" quality="high" bgcolor="#ffffff" width="730" height="550" align="middle" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>

not the body part of it it is ment to look like this when you have added it ok
http://www.mediacast.nu/demo.php
i have try to explain the best i can if you still dont no here is the link
http://www.mediacast.nu/chatroomsoftware.html sorry if i sound rude i am not trying to be but i did put at the top i was for a video chatroom
 
i am actually totally lost in those codes.. please code them.. i dont exactly get things right...

this is what i understood..
1. You are trying to put video chat inside your forum.
2. You have 2 types of chat box. The video chat is on the top and the normal text chat the the base ?
3. Those are like direct video chat code via the main website, i would suggest you to do it in an AJAX way which would keep all the information im ur website.. those codes will spread things around and also would not be private...
 
Status
Not open for further replies.
Back
Top