[RC] mChat New version

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment!
Suggested Hosts
Khamosh-Saya
Registered User
Posts: 871
Joined: Fri Nov 23, 2007 6:46 am
Location: UAE
Name: Jamshed Ansari
Contact:

Re: [RC] mChat New version

Post by Khamosh-Saya »

i have install this mod

its working fine
i m using AeroGreen Template
1st problem is out of Template widht

2nd i need this block corner will be round

how i can??

www.friendzpoint.com
neonshares
Registered User
Posts: 138
Joined: Thu May 21, 2009 1:31 am

Re: [RC] mChat New version

Post by neonshares »

neonshares wrote:Hello,

The feature i asked is already available in mchat as we can get the "Who is online on MCHAT" from chat archive page ie http://yoursitename.com/mchat.php

I would like to have that "Who is online on MCHAT" option on the index page attached to mchat box with hide and show button. Its also having high refresh rate of 30 seconds for
Whois refresh:
Number of seconds before whois stats refreshes.
Do not go below 30 seconds.

Better reducing it to 5seconds as like chat refresh rate of 5seconds would be good.

Thanks
UP
User avatar
imkingdavid
Former Team Member
Posts: 2673
Joined: Sun Jul 26, 2009 7:59 pm
Location: EST
Name: David King

Re: [RC] mChat New version

Post by imkingdavid »

I just installed this on my boards without any problem. Thanks for the great mod, and I hope it gets validated soon. :)

-david
Don't forget to smile today. :)
Please do NOT contact for support via PM or email.
User avatar
Nawid
Registered User
Posts: 329
Joined: Sat Jun 27, 2009 4:32 pm
Contact:

Re: [RC] mChat New version

Post by Nawid »

I´ve just updated my phpbb version to 3.0.6 and now the "new topic/reply notification" won't work.

I've followed these instructions

New Topic/Reply Notification

This will add a new message inside mchat that will notify users of a new topic or reply. It will be automatically posted under the user name of whoever made the new topic/reply, and it will provide a link to the new topic/reply.
Note: This modification was originally created by AllCity, I have altered it to display a custom, editable text when a new topic or reply is made, rather than "piggybacking" off of existing text already in the system.

Open: /language/en/common.php
As always, make a backup before you proceed.

Find:

Code: Select all

	'MIB'					=> 'MiB',
Add after, on a new blank line:

Code: Select all

	'MCHAT_NEW_TOPIC'		=> '<strong>System Message - New Topic</strong>',
	'MCHAT_NEW_REPLY'		=> '<strong>System Message - New Reply</strong>',
Open: /includes/functions_posting.php
As always, make a backup before you proceed.

Find:

Code: Select all

unset($sql_data[POSTS_TABLE]['sql']);
Add after, on a new blank line:

Code: Select all

          /* ============= mChat Start ============= */
          global $table_prefix;
          // Add name for db.
          define('MCHAT_TABLE', $table_prefix.'mchat');
          // New post/message.
          if ($post_mode == 'post')
          {
            // For new post
            $mchat_new_data = $user->lang['MCHAT_NEW_TOPIC'];
          }
            else
          {
            // For new message
            $mchat_new_data = $user->lang['MCHAT_NEW_REPLY'];
          }
          // Data...
          $message = utf8_normalize_nfc($mchat_new_data.': [url='.generate_board_url().'/viewtopic.'.$phpEx.'?p='.$data['post_id'].'#p'.$data['post_id'].']'.$subject.'[/url]');
          // Add function part code from http://wiki.phpbb.com/Parsing_text
          $uid = $bitfield = $options = ''; // will be modified by generate_text_for_storage
          generate_text_for_storage($message, $uid, $bitfield, $options, true, false, false);
          $sql_ary = array(
            'user_id' => $user->data['user_id'],
            'username' => $user->data['username'],
            'user_colour' => $user->data['user_colour'],
            'user_ip' => $user->data['session_ip'],
            'message' => $message,
            'bbcode_bitfield' => $bitfield,
            'bbcode_uid' => $uid,
            'bbcode_options' => $options,
            'message_time' => time()
          );
          $sql = 'INSERT INTO '.MCHAT_TABLE.' '.$db->sql_build_array('INSERT', $sql_ary);
          $db->sql_query($sql);
          /* ============== mChat End ============== */ 

original source: click here

I'd really appreciate it if someone could help me with this...
Image
Check SuperNova Orange style on:
SchoolLife.nl
phpBB.com
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: [RC] mChat New version

Post by RMcGirr83 »

Code: Select all

          $sql_ary = array(
            'user_id' => $user->data['user_id'],
            'username' => $user->data['username'],
            'user_colour' => $user->data['user_colour'],
            'user_ip' => $user->data['session_ip'],
            'message' => $message,
            'bbcode_bitfield' => $bitfield,
            'bbcode_uid' => $uid,
            'bbcode_options' => $options,
            'message_time' => time()
not from this version, as your quote even states...that is allcity's original version, the one that is in the MODDB. In the contrib folder are edits for this version (there is no more user_id and username, etc used in this version as that information is pulled from the users table instead).
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
User avatar
Nawid
Registered User
Posts: 329
Joined: Sat Jun 27, 2009 4:32 pm
Contact:

Re: [RC] mChat New version

Post by Nawid »

I saw that my version was an old one.

I've updated it to the newest version and still it's not working..

I followed the instructions in the contrib folder and now my mchat.php looks like this

Code: Select all

		$sql_ary = array(	
			'forum_id' 			=> 0,
			'post_id'			=> 0,		
			'user_id'			=> $user->data['user_id'],
			'user_ip'			=> $user->data['session_ip'],
			'message' 			=> $message,
			'bbcode_bitfield'	=> $bitfield,
			'bbcode_uid'		=> $uid,
			'bbcode_options'	=> $options,
			'message_time'		=> time()
		);
		$sql = 'INSERT INTO ' . MCHAT_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);
		$db->sql_query($sql);
Image
Check SuperNova Orange style on:
SchoolLife.nl
phpBB.com
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: [RC] mChat New version

Post by RMcGirr83 »

Whoops, missed the 3.0.6 part. I will have to look at the code to see how to fix that.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: [RC] mChat New version

Post by RMcGirr83 »

Sorry, only way I can reproduce new topics not being entered into the chat is if the topic has not been approved.

The contrib add-on only notifies of new topics if the user has the auths to read the forum the topic was made in.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
Khamosh-Saya
Registered User
Posts: 871
Joined: Fri Nov 23, 2007 6:46 am
Location: UAE
Name: Jamshed Ansari
Contact:

Re: [RC] mChat New version

Post by Khamosh-Saya »

What About me RMcGirr83 ???
Peter77sx
Registered User
Posts: 3260
Joined: Wed Nov 09, 2005 2:51 pm

Re: [RC] mChat New version

Post by Peter77sx »

Khamosh-Saya wrote:What About me RMcGirr83 ???
Follow your template example.. like the whois online box, or the clock in your portal... use the same example from those...
Khamosh-Saya
Registered User
Posts: 871
Joined: Fri Nov 23, 2007 6:46 am
Location: UAE
Name: Jamshed Ansari
Contact:

Re: [RC] mChat New version

Post by Khamosh-Saya »

i tried but i faild :( can u please check mine both files

viewonline_whois.html

Code: Select all

<!-- INCLUDE simple_header.html -->
<table width="100%" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="18" height="18"><img src="{T_THEME_PATH}/images/tl.png" width="18" height="18" alt="" /></td>
    <td height="18" style="background:url('{T_THEME_PATH}/images/tm.png');"></td>
    <td width="18" height="18"><img src="{T_THEME_PATH}/images/tr.png" width="18" height="18" alt="" /></td>
  </tr>
  <tr>
    <td width="18" style="background:url('{T_THEME_PATH}/images/ml.png');"></td>
    <td>
<table class="tablebg" width="100%" cellspacing="0">
<tr> 
	<th>{L_WHOIS}</th>
</tr>
<tr>
	<td class="row1"><pre>{WHOIS}</pre><br /><a class="nav" href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a></td>
</tr>
</table>
</td>
    <td width="18" style="background:url('{T_THEME_PATH}/images/mr.png');"></td>
  </tr>
  <tr>
    <td width="18" height="18"><img src="{T_THEME_PATH}/images/bl.png" width="18" height="18" alt="" /></td>
    <td height="18" style="background:url('{T_THEME_PATH}/images/bm.png');"></td>
    <td width="18" height="18"><img src="{T_THEME_PATH}/images/br.png" width="18" height="18" alt="" /></td>
  </tr>
</table>
<!-- INCLUDE simple_footer.html -->
mchat_body.html

Code: Select all

<!-- IF MCHAT_ARCHIVE_MODE or MCHAT_CUSTOM_PAGE -->
<!-- INCLUDE overall_header.html -->
<!-- ENDIF -->
<!-- IF MCHAT_ARCHIVE_MODE -->
<table width="100%" cellspacing="1">
<tr>
<td class="nav" valign="middle" nowrap="nowrap">&nbsp;<!-- IF MCHAT_PAGINATION --><a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{MCHAT_PAGE_NUMBER}</a><!-- ELSE -->{MCHAT_PAGE_NUMBER}<!-- ENDIF --><br /></td>
<td class="gensmall" nowrap="nowrap">&nbsp;[ {MCHAT_TOTAL_MESSAGES} ]&nbsp;</td>
<td class="gensmall" width="100%" align="right" nowrap="nowrap"><!-- IF MCHAT_PAGINATION --><b>{MCHAT_PAGINATION}</b><!-- ELSE -->&nbsp;<!-- ENDIF --></td>
</tr>
</table>
<!-- ENDIF -->
<!-- IF not MCHAT_READ_MODE -->
<!-- IF not S_MCHAT_LOCATION --><br /><!-- ENDIF -->
<table class="tablebg" width="100%" cellspacing="1" style="table-layout: fixed;">
<tr>
<td class="cat"><!-- IF MCHAT_ARCHIVE_MODE --><h4>{L_MCHAT_ARCHIVE_PAGE}</h4><!-- ELSE --><h4>{L_MCHAT_TITLE}</h4><!-- ENDIF --></td>
</tr>
<tr>
<td class="row1" width="100%" valign="middle">
<!-- ENDIF -->
<!-- IF MCHAT_ENABLE -->
<!-- IF not MCHAT_READ_MODE -->
<script type="text/javascript">
// <![CDATA[
// Define mChat setting
var mChatFile = '{MCHAT_FILE_NAME}';
var mChatForumRoot = '{ROOT_PATH}';
<!-- IF not MCHAT_ARCHIVE_MODE -->
var mChatRefresh = '{MCHAT_REFRESH_JS}';
<!-- ELSE -->
var mChatRefresh = false;
<!-- ENDIF -->
var mChatNoMessageInput = '{LA_MCHAT_NOMESSAGEINPUT}';
var mChatNoMessage = '{LA_MCHAT_NOMESSAGE}';
var mChatEditInfo = '{LA_MCHAT_EDITINFO}';
var mChatNoAccess = '{LA_MCHAT_NOACCESS}';
var mChatFlood = '{LA_MCHAT_FLOOD}';
var mChatDelConfirm = '{LA_MCHAT_DELCONFIRM}';
<!-- IF MCHAT_CUSTOM_PAGE_WHOIS and MCHAT_CUSTOM_PAGE-->
var mChatCustomWhois = true;
var mChatWhoisRefresh = '{MCHAT_WHOIS_REFRESH}';
<!-- ELSE -->
var mChatCustomWhois = false;
var mChatWhoisRefresh = false;
<!-- ENDIF -->
<!-- IF MCHAT_ARCHIVE_MODE -->
var mChatArchiveMode = true;
<!-- ELSE -->
var mChatArchiveMode = false;
// Define the bbCode tags
var bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','
','
  • ','
','
  • ','
','[img]','[/img]','','','[flash=]', '[/flash]','[size=]','[/size]');
var form_name = 'mChatForm';
var text_name = 'message';
var mChatFocusFix = true;
<!-- ENDIF -->
// ]]>
</script>
<!-- IF not MCHAT_ARCHIVE_MODE -->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>
<div <!-- IF MCHAT_CUSTOM_PAGE -->class="mChatRowLimitCustom"<!-- ELSE -->class="mChatRowLimit"<!-- ENDIF -->>
<!-- ENDIF -->
<div id="mChatData">
<!-- ENDIF -->
<!-- BEGIN mchatrow -->
<div id="mess{mchatrow.MCHAT_MESSAGE_ID}" class="mChatBG{mchatrow.MCHAT_CLASS} mChatHover"><span style="float:left;">{mchatrow.MCHAT_USERNAME_FULL}<!-- IF not MCHAT_ARCHIVE_MODE and MCHAT_ADD_MESSAGE --><!-- IF MCHAT_ALLOW_BBCODES --><!-- IF mchatrow.MCHAT_USERNAME_COLOR --> <a href="javascript://" onclick="insert_text('[color={mchatrow.MCHAT_USERNAME_COLOR}]{mchatrow.MCHAT_USERNAME}[/color], ', false);">|<b style="color: {mchatrow.MCHAT_USERNAME_COLOR}">X</b>|</a><!-- ELSE --> <a href="javascript://" onclick="insert_text('{mchatrow.MCHAT_USERNAME}, ', false);">|<b>X</b>|</a><!-- ENDIF --><!-- ELSE --> <a href="javascript://" onclick="insert_text('{mchatrow.MCHAT_USERNAME}, ', false);">|X|</a><!-- ENDIF --><!-- ENDIF --> - {mchatrow.MCHAT_TIME}</span><span style="float:right;"><!-- IF MCHAT_ALLOW_IP --><b>{L_MCHAT_IP}</b> <a href="{mchatrow.MCHAT_U_WHOIS}" onclick="popup(this.href, 750, 500); return false;">{mchatrow.MCHAT_USER_IP}</a><!-- ENDIF --><!-- IF mchatrow.MCHAT_ALLOW_BAN --> <a href="{mchatrow.MCHAT_U_BAN}"><img src="{ROOT_PATH}mchat/ban.gif" alt="{L_MCHAT_PERMISSIONS}" title="{L_MCHAT_PERMISSIONS}" style="vertical-align: middle;" /></a><!-- ENDIF --><!-- IF mchatrow.MCHAT_ALLOW_EDIT --> <a href="javascript://" onclick="mChat.edit('{mchatrow.MCHAT_MESSAGE_ID}');"><img src="{ROOT_PATH}mchat/edit.gif" alt="{L_MCHAT_EDIT}" title="{L_MCHAT_EDIT}" style="vertical-align: middle;" /></a><!-- ENDIF --><input type="hidden" id="edit{mchatrow.MCHAT_MESSAGE_ID}" value="{mchatrow.MCHAT_MESSAGE_EDIT}" /><!-- IF mchatrow.MCHAT_ALLOW_DEL --> <a href="javascript://" onclick="mChat.del('{mchatrow.MCHAT_MESSAGE_ID}');"><img src="{ROOT_PATH}mchat/del.gif" alt="{L_MCHAT_DELITE}" title="{L_MCHAT_DELITE}" style="vertical-align: middle;" /></a><!-- ENDIF --></span><br /><div style="padding: 3px; font-size:12px;">{mchatrow.MCHAT_MESSAGE}</div></div>
<!-- END mchatrow -->
<!-- IF not MCHAT_READ_MODE -->
<div id="mChatNoMessage"<!-- IF not MCHAT_NOMESSAGE_MODE --> style="display: none;"<!-- ENDIF -->>{L_MCHAT_NOMESSAGE}</div>
<!-- IF MCHAT_ARCHIVE_MODE and not MCHAT_NOMESSAGE_MODE -->
<div id="mChatArchiveNoMessage" style="display: none;">{L_MCHAT_ARCHIVENOMESSAGE}</div>
<!-- ENDIF -->
</div>
<!-- IF not MCHAT_ARCHIVE_MODE -->
</div>

<form method="post" action="javascript://" onsubmit="mChat.add();" id="mChatForm">
<div class="mChatPanel">
<noscript><div style="color: #FF0000;">{L_MCHAT_NOJAVASCRIPT}</div></noscript>
<!-- IF MCHAT_ADD_MESSAGE -->
<input type="hidden" name="mode" value="add" />
<input type="text" tabindex="1" name="message" class="mChatText" id="mChatMessage" />
<input type="button" tabindex="2" class="mChatButton" onclick="mChat.add();" value="{L_MCHAT_ADD}" />
<!-- ENDIF -->
<!-- IF MCHAT_ALLOW_SMILES -->
<input type="button" tabindex="3" class="mChatButton" onclick="mChat.toggle('Smiles');" value="{L_MCHAT_SMILES}" />
<!-- ENDIF -->
<!-- IF MCHAT_ALLOW_BBCODES -->
<input type="button" tabindex="4" class="mChatButton" onclick="mChat.toggle('BBCodes');" value="{L_MCHAT_BBCODES}" />
<!-- ENDIF -->
<!-- IF MCHAT_READ_ARCHIVE_BUTTON -->
<input type="button" tabindex="5" class="mChatButton" onclick="window.location.href = '{MCHAT_ARCHIVE_URL}';" value="{L_MCHAT_ARCHIVE}" />
<!-- ENDIF -->
<!-- IF MCHAT_FOUNDER -->
<input type="button" class="mChatButton" onclick="window.location.href = '{MCHAT_CLEAN_URL}';" value="{L_MCHAT_CLEAN}" />
<!-- ENDIF -->
<!-- IF MCHAT_ADD_MESSAGE -->
<input type="button" class="mChatButton" onclick="alert('{L_MCHAT_HELP_INFO}');" value="{L_MCHAT_HELP}" />
<!-- ENDIF -->
<!-- IF MCHAT_ALLOW_BBCODES -->
<div id="mChatBBCodes" style="padding: 5px; display: none;">
<input type="button" class="btnbbcode" accesskey="b" value=" B " style="font-weight: bold; width: 30px;" onclick="bbstyle(0);" />
<input type="button" class="btnbbcode" accesskey="i" value=" i " style="font-style: italic; width: 30px;" onclick="bbstyle(2);" />
<input type="button" class="btnbbcode" accesskey="u" value=" u " style="text-decoration: underline; width: 30px;" onclick="bbstyle(4);" />
<input type="button" class="btnbbcode" accesskey="q" value="Quote" style="width: 50px;" onclick="bbstyle(6);" />
<input type="button" class="btnbbcode" accesskey="c" value="Code" style="width: 40px;" onclick="bbstyle(8);" />
<input type="button" class="btnbbcode" accesskey="l" value="List" style="width: 40px;" onclick="bbstyle(10);" />
<input type="button" class="btnbbcode" accesskey="o" value="List=" style="width: 40px;" onclick="bbstyle(12);" />
<input type="button" class="btnbbcode" accesskey="t" value="[*]" style="width: 40px;" onclick="bbstyle(-1);" />
<input type="button" class="btnbbcode" accesskey="p" value="Img" style="width: 40px;" onclick="bbstyle(14);" />
<input type="button" class="btnbbcode" accesskey="w" value="URL" style="text-decoration: underline; width: 40px;" onclick="bbstyle(16);" />
<input type="button" class="btnbbcode" accesskey="d" value="Flash" onclick="bbstyle(18);" />
<span class="genmed nowrap">{L_MCHAT_FONTSIZE} <select class="gensmall" onchange="bbfontstyle('[size=' + this.options[this.selectedIndex].value + ']', '[/size]'); this.selectedIndex = 2;">
<option value="50">{L_MCHAT_FONTTINY}</option>
<option value="85">{L_MCHAT_FONTSMALL}</option>
<option value="100" selected="selected">{L_MCHAT_FONTNORMAL}</option>
<option value="150">{L_MCHAT_FONTLARGE}</option>
<option value="200">{L_MCHAT_FONTHUGE}</option>
</select></span>
</div>
<!-- ENDIF -->
<!-- IF MCHAT_ALLOW_SMILES -->
<div id="mChatSmiles" style="padding: 5px; display: none;">
<!-- IF MCHAT_NO_SMILE -->
{L_MCHAT_NOSMILE}
<!-- ENDIF -->
<!-- BEGIN mchatsmilerow -->
<a href="javascript://" onclick="insert_text('{mchatsmilerow.MCHAT_SMILE_CODE}', true);"><img src="{mchatsmilerow.MCHAT_SMILE_IMG}" width="{mchatsmilerow.MCHAT_SMILE_WIDTH}" height="{mchatsmilerow.MCHAT_SMILE_HEIGHT}" alt="{mchatsmilerow.MCHAT_SMILE_CODE}" title="{mchatsmilerow.MCHAT_SMILE_EMOTION}" /></a>
<!-- END mchatsmilerow -->
</div>
<!-- ENDIF -->
<div style="padding: 3px;">
<img src="{ROOT_PATH}mchat/load.gif" alt="{L_MCHAT_LOAD}" title="{L_MCHAT_LOAD}" id="mChatLoadIMG" style="vertical-align: middle; cursor: wait; display: none;" />
<img src="{ROOT_PATH}mchat/ok.gif" alt="{L_MCHAT_OK}" title="{L_MCHAT_OK}" id="mChatOkIMG" style="vertical-align: middle; cursor: help;" />
<img src="{ROOT_PATH}mchat/error.gif" alt="{L_MCHAT_ERROR}" title="{L_MCHAT_ERROR}" id="mChatErrorIMG" style="vertical-align: middle; cursor: help; display: none;" />
{MCHAT_REFRESH_HTML} &bull; <label for="mChatUseSound">{L_MCHAT_USESOUND} <input class="radio" style="vertical-align: middle;" type="checkbox" id="mChatUseSound" checked="checked" /></label>
</div>
</div>
</form>
<!-- ENDIF -->
<div id="mChatSound" style="position: absolute; left: -1000px; top: -1000px;"></div>
<script type="text/javascript" src="{ROOT_PATH}mchat/mchat_ajax_mini.js"></script>
<!-- ENDIF -->
<!-- ELSE -->
<div style="color: #FF0000; padding: 10px;">{L_MCHAT_ENABLE}</div>
<!-- ENDIF -->
<!-- IF not MCHAT_READ_MODE -->
<p align="center">{L_MCHAT_COPYRIGHT}</p>
</td>
</tr>
</table>
<br clear="all" />
<!-- ENDIF -->
<!-- IF MCHAT_ARCHIVE_MODE -->
<table width="100%" cellspacing="1">
<tr>
<td class="nav" valign="middle" nowrap="nowrap">&nbsp;<!-- IF MCHAT_PAGINATION --><a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{MCHAT_PAGE_NUMBER}</a><!-- ELSE -->{MCHAT_PAGE_NUMBER}<!-- ENDIF --><br /></td>
<td class="gensmall" nowrap="nowrap">&nbsp;[ {MCHAT_TOTAL_MESSAGES} ]&nbsp;</td>
<td class="gensmall" width="100%" align="right" nowrap="nowrap"><!-- IF MCHAT_PAGINATION --><b>{MCHAT_PAGINATION}</b><!-- ELSE -->&nbsp;<!-- ENDIF --></td>
</tr>
</table>
<!-- ENDIF -->


<!-- IF MCHAT_CUSTOM_PAGE and MCHAT_CUSTOM_PAGE_WHOIS -->
<br clear="all" />
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td class="cat" colspan="2"><h4>{L_WHO_IS_CHATTING}</h4></td>
</tr>
<tr>
<!-- IF LEGEND -->
<td class="row1" rowspan="2" align="center" valign="middle"><img src="{T_THEME_PATH}/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
<!-- ELSE -->
<td class="row1"align="center" valign="middle"><img src="{T_THEME_PATH}/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
<!-- ENDIF -->
<td class="row1" width="100%"><div id="mChatStats" style="display:block"><span class="genmed">{MCHAT_TOTAL_USERS_ONLINE}<br />{MCHAT_LOGGED_IN_USER_LIST}</span></div><br /><div id="mChatRefresh"><b class="gensmall">{MCHAT_WHOIS_REFRESH_EXPLAIN}</b></div><div id="mChatRefreshN" style="display: none;"><b class="gensmall">{L_WHO_IS_REFRESHING}</b></div></td>
</tr>
<!-- IF LEGEND -->
<tr>
<td class="row1"><b class="gensmall">{L_LEGEND} :: {LEGEND}</b></td>
</tr>
<!-- ENDIF -->
</table>
<!-- ENDIF -->

<!-- IF MCHAT_ARCHIVE_MODE or MCHAT_CUSTOM_PAGE -->
<!-- INCLUDE overall_footer.html -->
<!-- ENDIF -->[/code]
Joshuaxiong1
Registered User
Posts: 87
Joined: Sun Nov 22, 2009 2:01 am
Location: Fresno, California

Re: [RC] mChat New version

Post by Joshuaxiong1 »

Hey I can not find the mchat in my admin acp
and my normal user can not see it
but admin and my moderator can see it
Help?
stokerpiller
Registered User
Posts: 1934
Joined: Wed Feb 28, 2007 8:06 pm

Re: [RC] mChat New version

Post by stokerpiller »

The acp config is in the .mods tab
purge cache if you cant see it.

Set groups permissions for all groups after installing this mod. You need to set permissions before users can use it.
I am done with phpBB
Joshuaxiong1
Registered User
Posts: 87
Joined: Sun Nov 22, 2009 2:01 am
Location: Fresno, California

Re: [RC] mChat New version

Post by Joshuaxiong1 »

Thank you very much, stokerpiller.
Joshuaxiong1
Registered User
Posts: 87
Joined: Sun Nov 22, 2009 2:01 am
Location: Fresno, California

Re: [RC] mChat New version

Post by Joshuaxiong1 »

I wish there was the ban button instead of permission to none button.
Locked

Return to “[3.0.x] MODs in Development”