Mchat on Sidebar Problem

Support for mods released by phpbbmodders.net found at either https://github.com/phpbbmodders/ or the MODDB at http://www.phpbb.com
Forum rules
Please only request support for mods released by phpbbmodders.net found at either https://github.com/phpbbmodders/ or the MODDB at http://www.phpbb.com
Post Reply
anqelus
New member
New member
Posts: 1
Joined: 29 Jul 2012, 03:01

Mchat on Sidebar Problem

Post by anqelus »

Im trying to include mchat on my forum sidebar

My sidebar script

Code: Select all

<!-- Sidebar block beginning -->
<!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH -->
    <div class="sblock">         
        <div class="search-block-content"> <!-- Sidebar content beginning -->
            <div class="sidebar-search-box">
                <form action="{U_SEARCH}" method="get" id="search" >
                    <fieldset>
                        <div class="sidebar-inside-sb">
                            <a class="adv-search-btn" title="{L_SEARCH_ADV}" href="{U_SEARCH}"><i class="icon-plus-circled"></i></a>
                            <input class="inputbox search"  type="text" name="keywords" id="search_keywords" size="20" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" />                               
                            <input class="button2" type="submit" value="&#xf002" />
                                {S_SEARCH_LOCAL_HIDDEN_FIELDS}
                        </div> 
                    </fieldset>
                </form>
            </div>       
        </div> <!-- Sidebar content end -->
    </div>
<!-- ENDIF -->
<!-- Sidebar block end -->

<!-- Forum Menu start here -->
  <!-- INCLUDE forum_menu.html -->
<!-- Forum Menu ends here -->
             
<div class="sblock"><!-- Sidebar block beginning -->   
    <div class="sheader"><!-- Sidebar header beginning -->
        <h4 class="sh4"> Sohbet</h4>               
    </div> <!-- Sidebar header end -->         
    <div class="scontent pb10"> <!-- Sidebar content beginning -->                             
<!-- IF S_MCHAT_ENABLE and S_MCHAT_ON_INDEX and S_MCHAT_LOCATION --><!-- INCLUDE mchat_body.html --><!-- ENDIF -->
    </div><!-- Sidebar content end -->
</div><!-- Sidebar block end --> 


But i got this error message:

Code: Select all

Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 261900 bytes) in /home/content/84/7766884/html/pehh/includes/template.php on line 657


My forum style is this one:
http://phpbb3responsive.com/themes/?product=flato

How i can fix this problem?
Post Reply