MyBB Community Forums

Full Version: Shoutmix Integration Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello, i need urgent help for this, im trying my hardest to integrate the shoutmix ( yes i have premium on shoutmix ) to mybb, i have this code in my index template but it seems not to work. i want it to make so that users CANT change their username and it makes their username as their forum username, and also want to make so guests cant view the shoutbox!

this code i have:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
    lang.no_new_posts = "{$lang->no_new_posts}";
    lang.click_mark_read = "{$lang->click_mark_read}";
// -->

</script>
</head>
<body>
{$header}
<sf_shoutbox>

<?php
$code1 = md5($mybb->user['username'].'7fda9c4930');
?>

<iframe title="themodsnetwork" src="http://www1.shoutmix.com/?themodsnetwork&amp;name={$mybb->user['username']}&amp;code={$code1}" width="100%" height="275" frameborder="0" scrolling="auto"></iframe>

{$forums}
{$boardstats}

<table border="0" class="symbols" cellspacing="1" cellpadding="2" align="center">
<tr>
<td class="thead_bottom" colspan="3" style="white-space:nowrap"></td>
</tr>
    <tr>
                        <td class="trow1" style="white-space:nowrap" align="center"><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /> <span class="smalltext">{$lang->new_posts}</span></td>
                        <td class="trow1" style="white-space:nowrap" align="center"><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /> <span class="smalltext">{$lang->no_new_posts}</span></td>
                        <td class="trow1" style="white-space:nowrap" align="center"><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" style="vertical-align: middle;" /> <span class="smalltext">{$lang->forum_locked}</span></td>
    </tr>
<tr>
<td class="thead_bottom" colspan="3"></td>
</tr>
</table>
{$footer}
</body>
</html>

any ideas how to make the shoutbox work?

i really need help with this

someone please answer?
someone PLEASE ANSWER I NEED HELP
In your code; Find:
$code1 = md5($mybb->user['username'].'7fda9c4930');
and replace it to;
$code1 = $mybb->user['username'];

Hope it helps.