Page 1 of 1

Shoutbox and another Q

PostPosted: Tue Sep 27, 2011 10:58 pm
Author: Lycanth
Two very quick questions.

#1: How do I make the shoutbox useable and viewable by guests? Yes, I would like guests to be able to use it and am well aware of the risk of spam <img>

#2: I no longer really use the portal page, so what do i change so my url redirects to the index page instead of portal as it is currently doing?

my site is at http://www.nextincantation.com

Oh, make that three, heh.

#3: How hard is it to upgrade to IM3? Because I really want my members to be able to have 'switch/sub accounts' and have found none that work for phpbb2.

Re: Shoutbox and another Q

PostPosted: Fri Sep 30, 2011 1:42 pm
Author: Helter
OPEN YOUR TEMPLATE/index_body.tpl

FIND
Code: Select all
<BEGIN>
<Start>


REPLACE WITH
Code: Select all
<Start>


FIND
Code: Select all
<End>

<END>


REPLACE WITH
Code: Select all
<End>


OPEN FORUM ROOT/shoutbox.php

FIND
Code: Select all
         if ($userdata['user_id']==ANONYMOUS)
         {
            $is_auth['auth_delete'] = 0;
            $is_auth['auth_post'] = 0;

REPLACE WITH
Code: Select all
         if ($userdata['user_id']==ANONYMOUS)
         {
            $is_auth['auth_delete'] = 0;
            $is_auth['auth_post'] = 1;


OPEN FORUM ROOT/shoutbox_view.php
FIND
Code: Select all
         if ($userdata['user_id']==ANONYMOUS)
         {
            $is_auth['auth_delete'] = 0;
            $is_auth['auth_post'] = 0;


REPLACE WITH
Code: Select all
         if ($userdata['user_id']==ANONYMOUS)
         {
            $is_auth['auth_delete'] = 0;
            $is_auth['auth_post'] = 1;


OPEN FORUM ROOT/shoutbox_max.php
FIND
Code: Select all
         if ($userdata['user_id']==ANONYMOUS)
         {
            $is_auth['auth_delete'] = 0;
            $is_auth['auth_post'] = 0;


REPLACE WITH
Code: Select all
         if ($userdata['user_id']==ANONYMOUS)
         {
            $is_auth['auth_delete'] = 0;
            $is_auth['auth_post'] = 1;