for now, in regards to the chat port to vB3.5.x, one may need to change the template modifications to reflect your current forum location such as:
Code:
<script type="text/javascript">
<!--
function OpenvBChat(){
vBChat = window.open('chat.php$session[sessionurl_q]','vBChat','directories=no,height='+window.screen.height+',width='+window.screen.width+',location=no,menubar=no,scrollbars=yes,status=no,toolbar=no')
return false;
}
-->
</script>
<td class="vbmenu_control"><a href="chat.php$session[sessionurl_q]" onclick="return OpenvBChat();">vBChat</a></td>
changed to:
Code:
<script type="text/javascript">
<!--
function OpenvBChat(){
vBChat = window.open('http://www.YOURSITE.com/YOUR_FORUM_DIRECTORY/chat.php$session[sessionurl_q]','vBChat','directories=no,height='+window.screen.height+',width='+window.screen.width+',location=no,menubar=no,scrollbars=yes,status=no,toolbar=no')
return false;
}
-->
</script>
<td class="vbmenu_control"><a href="http://www.YOURSITE.com/YOUR_FORUM_DIRECTORY/chat.php$session[sessionurl_q]" onclick="return OpenvBChat();">vBChat</a></td>
note the change/addition of: "http://www.YOURSITE.com/YOUR_FORUM_DIRECTORY/"