 |
View previous topic :: View next topic |
Author |
Message |
Skyfreak Admiral


Joined: 30 Aug 2003 Posts: 816
|
Posted: Thu Jan 04, 2007 2:21 pm Post subject: |
|
|
since we are talking about a few changes, I would suggest that we have a link to a chat room added to the forum links, just simple to click and enter the chat. so it should be FAQ Search Memberlist Usergroups Recent topics chatroom
Profile You have no new messages Log out [ Skyfreak ] base _________________
created by compu_head
1 of 9 who killed borg
www.edge-tv.net |
|
Back to top » |
|
 |
Dinskydude Admiral

Joined: 18 May 2006 Posts: 854 Location: Nijmegen, The Netherlands, Europe, Earth
|
Posted: Thu Jan 04, 2007 2:46 pm Post subject: |
|
|
Er... Skyfreak, this is a standard template, you can't mess with the menu, seriously i tried with my forum, but u can't. Sorry. _________________
 |
|
Back to top » |
|
 |
Skyfreak Admiral


Joined: 30 Aug 2003 Posts: 816
|
Posted: Thu Jan 04, 2007 6:22 pm Post subject: |
|
|
er... dinskydude, dont try to tell me it isnt possible, everything is possible, and if it aint today, it is tomorrow. But I get what you saying, it aint a matter of just writing chatroom next to register, but hey there is always something to work out.
Mississippi
Posted: Wed Nov 12, 2003 8:01 pm Post subject: Sigma chat mod
--------------------------------------------------------------------------------
Code:
#############################################################
## MOD Title: Sigma Chat mod
## MOD Author: Jamy, thanks to Wooly Spud for helping me get the codes sorted out
## MOD Description: this makes the sigma chat room auto login members and if so desired it makes it member access only
## MOD Version: 0.1.0
##
## Installation Level: Easy
## Installation Time: 2 Minutes
## Files To Edit: overall_header.tpl
##
##
## Included Files: N/A
##
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/
##############################################################
## MOD History:
##
## 2003-11-12 - Version 0.1.0
## Release appears to be bug free as I
## have been using it on my forum for several months
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ Go to http://www.sigmachat.com/ ]------------
#
#
# Register an account with Sigma Chat for the free version.
#
#-----[ OPEN ]---------------------------------------------
#
Word Pad
#
#-----[ add to top of page]-------------------------------
#
<?php
define('IN_PHPBB', true);
$phpbb_root_path = '../phpBB2/';//.
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//
// End session management
//
$name=$userdata[username];
?>
#
#----------[Change]--------------------------------------
#
phpBB2 to the root path of your forum folder IE http://www.your site.com/forum
only change phpBB2 to forum.
#
#-----[After Add your sigma chat code it should look someting like this ]--------#
<applet
codebase="http://client0.sigmachat.com/current/"
code="Client.class" archive="scclient_en.zip"
width=800 height=480 MAYSCRIPT>
<param name="room" value="12345">
<param name="cabbase" value="scclient_en.cab">
</applet
#
#-----[ in code find ]-----------------------------------------
#
<param name="cabbase" value="scclient_en.cab">
#
#-----[ After Add ]-------------------------------------------
#
<param name="username" value="<?php if(isset($userdata[username]) || $name != ""){echo $name;}else{echo "Guest";} ?>">
<param name="autologin" value="yes">
#
#----------------------[name page]-----------------------
#
chat.php
#
#-----[ Open ]---------------------------------------------
#
templates/subSilver/overall_header.tpl
#
#-----[ find ]---------------------------------------------
#
<td height="25" align="center" valign="top" nowrap="nowrap"><span class="mainmenu"> <a href="{U_PROFILE}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a> <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a> <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a> </span></td>
</tr>
</table></td>
</tr>
</table>
#
#-----[After Add]-----------------------------------------
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<td width="10%">
<center>
<!-- BEGIN switch_user_logged_in -->
<a href="chat.php" class="mainmenu"> <img src="templates/subSilver/images/chat.gif" width="61" height="18"<table width="100%" border="0" cellspacing="5" cellpadding="5"></a>
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_user_logged_out -->
<img src="templates/subSilver/images/chat_off.gif" width="61" height="18"<table width="100%" border="0" cellspacing="5" cellpadding="5"></a>
<!-- END switch_user_logged_out -->
#-----[ SAVE/CLOSE/UPLOAD ]--------------------------------------
# EoM
something like that, but I do tend to make mistakes  _________________
created by compu_head
1 of 9 who killed borg
www.edge-tv.net |
|
Back to top » |
|
 |
MicroJak Admiral


Joined: 27 Jun 2006 Posts: 2315 Location: London, UK
|
Posted: Sat Jan 06, 2007 3:36 pm Post subject: |
|
|
I didn't do it on my forum, but there is a page where you can change the template of a default template, and make it your own. Such as ST's for example is Solaris, but admin has edited the Solaris template so that there is a Spacetrace logo in the top left corner. Also the template has been edited so that the ForumUp logo is not on here anymore, and also that the advertising at the bottom of the page is allowed.
So I think it would work, if I know what your talking about.  _________________
Quote: | When you're good you're very good, but when you're bad you're better.  |
|
|
Back to top » |
|
 |
Skyfreak Admiral


Joined: 30 Aug 2003 Posts: 816
|
Posted: Sat Jan 06, 2007 4:28 pm Post subject: |
|
|
yeah that is pretty much it, you can change your template default on your hd, and then it would work. i think admins know a bit morfe about that, but time is money and they haved to live too lol, or well, lets take their cars and boats away and then they have to put all energy into spacetrace bla bla bla  _________________
created by compu_head
1 of 9 who killed borg
www.edge-tv.net |
|
Back to top » |
|
 |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
 |
|