651

(15 replies, posted in PunBB 1.3 extensions)

in IE ... the menu is shown at the bottom of the page ... but i know ... i just found idea for it that will work ... look what method i use for my shoutbox in www.sportstv.co.cc page

here is the code:

look at my block in my main.tpl

<div id="newsbox_border_open" class="block">
<div style="cursor:hand; cursor:pointer;" onClick="expandcontent(this, 'admin_guest_options')"><h2><span>Shoutbox - Click Here - On/Off</span></h2>
<div id="newsbox_border_close" class="box">
<div id="admin_guest_options" class="switchcontent">
            <pun_include "shoutbox.php">
            </div>
        </div>
    </div>
</div>

this will give you a clear idea i think

now i get :


Warning: require_once(./parser.php) [function.require-once]: failed to open stream: No such file or directory in /home/supermag/public_html/include/user/shoutbox.php on line 3

Fatal error: require_once() [function.require]: Failed opening required './parser.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/supermag/public_html/include/user/shoutbox.php on line 3

653

(8 replies, posted in PunBB 1.3 extensions)

damaxxed wrote:

Do you really think your planned, overloaded, PunBB will be much faster than IPB? ;-)

well yes i think it will be faster then IPB ...

i saw the quires in the smp  was 81 quiers in the home page ...

smp is faster then ipb ...

so i would rather use punbb ...

much simpler to manage ...

i know its not all about quiers

654

(8 replies, posted in PunBB 1.3 extensions)

no way that ipb is darn toooooooooooo much slow ... i will never use that ...

655

(8 replies, posted in PunBB 1.3 extensions)

Here Post the most quickly extensions that you want ... also post if some one is working on one of the posted extensions
mine is:

Most Needs:
Portal (almost completed thanks to daris)
Subforum (despretly need it before i open my big forum next month - cannot open a forum without it)
Pun Toolbar with Smiley's (also need it very much)
Adsense Options (also most needed)
Allow HTML (also most needed)
Sitemap  (also most needed but the 1.3 way)

Medium Needs:
Gallery (kerowek is working on the next version which will be cool)
Calander
Private messaging
Polls
Arcade (i think stevenbullen was working on it and now i dont know)
Printable Topics
Affiliates
BotDetect
Feed Aggregator
ChatBox

Low Needs: i like ajax so much because its fast
ajax quick edit (currently daris is working on one which i dont know it will meet my needs yet)
ajax quick reply
ajax quick search
ajax Topic Preview (mouse on topic preview)
and any other ajax thing possible and look good



other extensions will be like a choice ... if i like them i will add them ... since its extension system not mod system ... one click and installed ... or uninstalled ...


thanks ...

656

(15 replies, posted in PunBB 1.3 extensions)

daris wrote:

MyBB has implemented own popup menu system, i tried include it to punbb but it requires some mybb variables

so is it possible or not ... i  mean to include it in punbb .... people will love it if that happen ... i mean why you want to have to butttons like (Edit - Quick Edit) except of normal edit ... some browsers may not have java installed so they will be automathecally directed to full edit ... the browsers which have java installed ... it will show menu of quick edit and full edit ..

that will be great if other extensions developers help us on this

thanks

657

(15 replies, posted in PunBB 1.3 extensions)

here i found it ... this is the mybb mod ... mybb also uses extension system ... may be this will help

http://mods.mybboard.net/view/quick-edit

MattF wrote:

At the top of the file:

<?php
PUN_ROOT = '../';
require_once PUN_ROOT.'parser.php';
?>

now i get this

Parse error: syntax error, unexpected '=' in /home/supermag/public_html/include/user/cb.php on line 2

hea ... i am trying to add the chatbox to index but have a problem with a code ... can some one help here ...

ok .. here the idea which i am working on ... http://www.punres.org/viewtopic.php?pid=14605#p14605

my site is www.sportstv.co.cc

and my chatbox is www.sportstv.co.cc and i want to remove the bbcode for the index.php ... to be just a line for the text

i am using megapun so

i developed it more like the megapun version of chatbox ... here


here is my include/user/cb.php

<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript" src="js/chatbox.js"></script>

<div class="block">
 <h2>
    <span>
<span class="conr" ><img alt="" style="display:none;" id="loading" name="loading" src="img/loading.gif" /></span>
    
<?php echo $lang_chatbox['Chatbox'] ?></span>
  </h2>
    <div class="box">
        <div id="chatbox" class="inbox" style="overflow:auto;height:<?php echo $pun_config['cb_height'] ?>px;">
<?php

$cur_msg_txt = '';
$last_msg_time = '';
$count_id = array();

$result = $db->query('SELECT u.id, u.group_id, u.num_posts_chatbox, m.id AS m_id, m.poster_id, m.poster, m.poster_ip, m.poster_email, m.message, m.posted, g.g_id, g.g_title_chatbox, g.g_color FROM '.$db->prefix.'chatbox_msg AS m INNER JOIN '.$db->prefix.'users AS u ON u.id=m.poster_id INNER JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id ORDER BY m.posted DESC LIMIT '.$pun_config['cb_max_msg']) or error('Unable to fetch messages', __FILE__, __LINE__, $db->error());
$i = 0;
while ($cur_msg = $db->fetch_assoc($result))
  {
    $i++;
    if ($i == 1)
    {
        // Get newest timestamp
        $last_msg_time = $cur_msg['posted'];
    }
    $cur_msg_txt = $pun_config['cb_space'].$cur_msg['g_title_chatbox'].$pun_config['cb_disposition'].$cur_msg_txt;

if ($cur_msg['g_id'] != PUN_GUEST)
        $cur_msg_txt = str_replace('<pun_username>', '<a href="profile.php?id='.$cur_msg['id'].'"><span style="color: '.$cur_msg['g_color'].'">'.pun_htmlspecialchars($cur_msg['poster']).'</span></a>', $cur_msg_txt);
    else
      $cur_msg_txt = str_replace('<pun_username>', pun_htmlspecialchars($cur_msg['poster']), $cur_msg_txt);

    $cur_msg_txt = str_replace('<pun_date>', format_time($cur_msg['posted']), $cur_msg_txt);
    
        if ($cur_msg['g_id'] != PUN_GUEST)
      $cur_msg_txt = str_replace('<pun_nbpost>', $cur_msg['num_posts_chatbox'], $cur_msg_txt);
    else
    {

      if (!isset($count_id[$cur_msg['poster']]))
      {
        $like_command = ($db_type == 'pgsql') ? 'ILIKE' : 'LIKE';
        
        $count = $db->query('SELECT COUNT(id) FROM '.$db->prefix.'chatbox_msg WHERE poster '.$like_command.' \''.$db->escape(str_replace('*', '%', $cur_msg['poster'])).'\'') or error('Unable to fetch user chatbox post count', __FILE__, __LINE__, $db->error());
        $num_post = $db->result($count);
        $count_id[$cur_msg['poster']] = $num_post;
      }
      else
        $num_post = $count_id[$cur_msg['poster']];

      $cur_msg_txt = str_replace('<pun_nbpost>', $num_post, $cur_msg_txt);
    }

    $cur_msg_txt = str_replace('<pun_nbpost_txt>', $lang_chatbox['Posts'], $cur_msg_txt);

        if ($pun_user['g_id'] < PUN_GUEST)
      {
      $cur_msg_admin = ' [ <a href="chatbox.php?del='.$cur_msg['m_id'].'">Delete</a> | <a href="chatbox.php?get_host='.$cur_msg['m_id'].'">'.$cur_msg['poster_ip'].'</a>';
      if ($cur_msg['poster_email'])
              $cur_msg_admin .= ' | <a href="mailto:'.$cur_msg['poster_email'].'">'.$lang_common['E-mail'].'</a> ]';
          else
            $cur_msg_admin .= ' ] ';
        }
    else
      $cur_msg_admin = '';
    
      $cur_msg_txt = str_replace('<pun_admin>', $cur_msg_admin, $cur_msg_txt);
      $cur_msg_txt = str_replace('<pun_message>', parse_message($cur_msg['message'], 0), $cur_msg_txt);

  }
if (!$cur_msg_txt)
  echo $lang_chatbox['No Message'];
else
  echo "\t\t\t".$cur_msg_txt."\n";
?>
        </div>
    </div>

    
<?php
if ($pun_user['g_post_chatbox'] == '1')
  {
    $cur_index = 1;
  ?>
            <form id="post" method="post" name="post" action="chatbox.php">

         <input type="hidden" name="form_sent" value="1" />
         <input type="hidden" name="form_user" id="form_user" value="<?php echo (!$pun_user['is_guest']) ? pun_htmlspecialchars($pun_user['username']) : 'Guest'; ?>" />
<?php

if ($pun_user['is_guest'])
{
    $email_label = ($pun_config['p_force_guest_email'] == '1') ? '<strong>'.$lang_common['E-mail'].':</strong>' : $lang_common['E-mail'];
    $email_form_name = ($pun_config['p_force_guest_email'] == '1') ? 'req_email' : 'email';

    if($email_form_name = 'req_email')
        echo "\t".'<input type="hidden" name="email" id="email" value="" />'."\n";
    else
        echo "\t".'<input type="hidden" name="req_email" id="req_email" value="" />'."\n";

?>
          <strong><?php echo $lang_post['Guest name'] ?>:</strong><br /><input class="textbox" type="text" name="req_username" id="req_username" value="<?php if (isset($_POST['req_username'])) echo pun_htmlspecialchars($username); ?>" size="20" maxlength="25" tabindex="<?php echo $cur_index++ ?>" /> 
          <?php echo $email_label ?> <input class="textbox" type="text" name="<?php echo $email_form_name ?>" id="<?php echo $email_form_name ?>" value="<?php if (isset($_POST[$email_form_name])) echo pun_htmlspecialchars($email); ?>" size="20" maxlength="50" tabindex="<?php echo $cur_index++ ?>" /><br /> 
<?php

}
else
{
?>
          <input type="hidden" name="req_username" id="req_username" value="" /> 
          <input type="hidden" name="email" id="email" value="" /> 
          <input type="hidden" name="req_email" id="req_email" value="" />

<?php

}

?>
        <strong><?php echo $lang_chatbox['Message'] ?>:</strong> <input type="text" name="req_message"  id="req_message" value="<?php if (isset($_POST['req_message'])) echo pun_htmlspecialchars($message); ?>" size="50" maxlength="<?php echo $pun_config['cb_msg_maxlength'] ?>"  tabindex="<?php echo $cur_index++ ?>" /> 
         <input type="submit" name="submit" value="<?php echo $lang_chatbox['Btn Send'] ?>" accesskey="s" tabindex="<?php echo $cur_index++ ?>" />
    <script language="javascript">
    <!--
    document.formulaire.req_message.focus();
    // -->
    </script>
    </form>

  <?php
  }
else
  echo $lang_chatbox['No Post Permission'];
?>
</div>

<script type="text/javascript" language="javascript">
    // Begin getting messages
    var LastMsg = '<?php echo $last_msg_time; ?>';
    $('autoscroll').value = 'true';
    get_messages();
    checker = new PeriodicalExecuter(get_messages, <?php echo $pun_config['cb_ajax_refresh']; ?>);
</script>

but i get this error ...

Fatal error: Call to undefined function parse_message() in /www/110mb.com/c/r/i/c/k/e/t/s/cricketstreams/htdocs/include/user/cb.php on line 71

man ..

can some one help please ...

any one

any one

662

(119 replies, posted in PunBB 1.3 extensions)

daris wrote:

which forum ... it must punbb error ...

http://supermag.exofire.net/
and the link is:
http://supermag.exofire.net/change-pass … ***Jk.html (i censured some chars)

It's something wrong with fancy url's because i can go to this page:
http://supermag.exofire.net/profile.php … y=Sv****Jk (i typed new password and it redirects to fancy url and then shows premissions error again)

i changed my password and it worked ... if it is some thing wrong with the fancy url then inform smarty ... that might be a big bug ...

663

(119 replies, posted in PunBB 1.3 extensions)

daris wrote:

my site still have 7 vaildations but it may be caused by other extensions which i dont know which one ...

I know. It's mine style changer extension (double quotes "")

same page ... when the page name is change the url of the page should be change and old url should not work

It isn't a bug, you have to edit menu panel. Page name is constant, because else it will be additional query to database.


I can't change password on your forum, when i clicked on link in mail i get "You do not have permission to access this page." (it could be a punbb error). Try register new user.

but the old link should not be accessed ... even it requires a query ...

which forum ... it must punbb error ... wait i will check and what about other things ...


thanks

664

(119 replies, posted in PunBB 1.3 extensions)

daris wrote:

1- it has 21 vaildations problems

http://validator.w3.org/check?uri=http% ? mp;group=0

Sorry, i didn't see this, i were always logged ;P

Great work
my site still have 7 vaildations but it may be caused by other extensions which i dont know which one ...



2- custom pages and not accepting HTML at all

daris wrote:

One htmlspecialchars too a lot

there is still some thing wrong with the page look the difference
http://supermag.exofire.net/page1-Free-Hosting.html
http://supermag.wsnw.net/page.php?id=4

and also another bug found ... when you change the page name ... the old url of the page still works ... i mean ...
i changed the example page to Free Hosting ... but look
http://supermag.exofire.net/page1-Free-Hosting.html
http://supermag.exofire.net/page1-example-page.html
same page ... when the page name is change the url of the page should be change and old url should not work

and also can you put the page title in the top of ie page title

i mean look like this
Example page - Punbb - Internet Exploar


and also can you please make this linkible to the created page:
Delete | Edit  (((HTML Encrypt)))

daris wrote:

Admin/edit page or preview page?

i dont see any preview page ... but it will be great if you linked the page like
Delete | Edit  (((Example page))) make it linkible to it page



4- in the article page the comments is linked to topic except of article

daris wrote:

Comments are on the forum (they're posts)

ok forget about articles .. they are great ...

665

(119 replies, posted in PunBB 1.3 extensions)

daris wrote:

New release - 1.8

Changes:
- you can set preferences for some panels
- you can manage panels for center side
- some small fixes

Download

great but sorry ... not too much success:

1- it has 21 vaildations problems

http://validator.w3.org/check?uri=http% … mp;group=0

2- custom pages and not accepting HTML at all

look  http://www.supermag.exofire.net/page1-Free-Hosting.html

and also can you please make this linkible to the created page:
Delete | Edit  (((HTML Encrypt)))

3- dublicate problem ... you can make topic1 redirect to article1 and make the article forum invisible and inaccessable and also the a

http://supermag.exofire.net/topic1-how- … cepts.html
http://supermag.exofire.net/article1how … ncepts.htm

and also there is no slash between article1 and the topic name

4- in the article page the comments is linked to topic except of article
Posted: 2008-03-10 17:35:19 | Author: SuperMAG | Read more | Views: 56 | Comments: 1

5- shouldnt atom and rss of the articles be in the articles page and the top or bottom ...
and also option to display how many articles in one page and also page 1,2,3 etc
and also shoudnt the articles forum's rss and atom have articles links except of topic links


---------------------------------------------------------------------------

GREAT WORK >>> MY PROSGATE SITE IS ALMOST COMPLETE >>> THANKSSSSSSSSSSSS ALOOOOOOOT

666

(119 replies, posted in PunBB 1.3 extensions)

daris wrote:

when i put a adsense banner in my banner pannel ... look what happen

Parse error: syntax error, unexpected '<' in /home/iman/public_html/footer.php(218) : eval()'d code(19) : eval()'d code on line 1

Try adding

?>

at start. Can you post your code?

yes it worked by putting that ...

but shouldnt it supposed to be right without putting first that ... users may get confused ...

and what about other things in the abouve posts ...

thanks and GREEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEAT WORK

Need a litttle help in my Online.php page ... the online page is came from some modification i dont know where is it now ... but it was called punonline i guess ...

my online page only shows the pages that are orignally in punbb like userlist, search, login, registering, veiwforum, viewtopic ..., forum index, etc

but it does not view the pages which were maded by modifications ...

like the following pages:

i want to see custom pages with the page name
i want to see if they were viewing blogs and also which blogs they are viewing
i want to see if they were viewing arcade and also which game they are viewing
Rules page
links page
Gallery page
chatbox page
Contact Us page
and finally Downloads page


here is my online page:

 
<?php
define('PUN_ALT4',1);
define ('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';

if ($pun_user['is_guest'] && $pun_user['g_read_board'] == '0')
        message($lang_common['No permission']);


// Load the userlist.php language file

require PUN_ROOT.'lang/'.$pun_user['language'].'/userlist.php';
// Load the online.php language file
require PUN_ROOT.'lang/'.$pun_user['language'].'/online.php';

$page_title = pun_htmlspecialchars($pun_config['o_board_title']).' / '.$lang_online['Online List'];
require PUN_ROOT.'header.php';
?>
<div class="blocktable">
    <h2><span><?php echo $lang_online['Online List'] ?></span></h2>
    <div class="box">
        <div class="inbox">
            <table cellspacing="0">
            <tr>
                <th class="tcr" style="text-align: center; border-left: 0px;" scope="col"><?php echo $lang_common['Username'] ?></th>
                <th class="tcr" style="text-align: center; border-left: 0px;" scope="col"><?php echo $lang_online['Last action'] ?></th>
                <th class="tcr" style="text-align: center; border-left: 0px;" scope="col"><?php echo $lang_online['Time'] ?></th>
                <?php 
    if($pun_user['g_id'] <= PUN_MOD)
    { 
?>
                <th style="text-align: center; border-left: 0px;" class="tcr" scope="col"><?php echo $lang_online['IP'] ?></th>
<?php 
        echo "\n";
    }
?>
    </tr>
            
            

<?php


// Grab the users
$result = $db->query('SELECT * FROM '.$db->prefix.'online WHERE user_id > 0 AND idle=0 ORDER BY ident') or error('Unable to fetch online list', __FILE__, __LINE__, $db->error());
$num_users_page = $db->num_rows($result);

if ($num_users_page) {
  while ($num_users_page--) {
   $user_data = $db->fetch_assoc($result);
    if ($user_data['current_page']) {
        echo"\t\t\t\t".'<tr>'."\n";
        
    if ($user_data['user_id'] > 1) 
          echo "\t\t\t\t\t".'<td style="text-align: left; border-left: 0px;"><img style="vertical-align: middle;" src="'.$pun_config['o_base_url'].'/img/ip.gif" title="'.$lang_online['Online'].'" alt="'.$lang_online['Online'].'" /> <a href="'.PUN_ROOT.'profile.php?id='.$user_data['user_id'].'">'.$user_data['ident'].'</a></td>'."\n";
    else 
        echo "\t\t\t\t\t".'<td style="text-align: left; border-left: 0px;"><img style="vertical-align: middle;" src="'.$pun_config['o_base_url'].'/img/ip.gif" title="'.$lang_online['Online'].'" alt="'.$lang_online['Online'].'" /> '.$lang_online['Guest'].'</td>'."\n";

$pathinfo = pathinfo($user_data['current_page']);
$current_page = $pathinfo['basename'];

if ($user_data['current_page_id'] > 0) {
    if ($current_page == "viewtopic.php" || $current_page == "post.php") { $current_page_name = $db->query('SELECT subject FROM '.$db->prefix.'topics WHERE id=\''.$user_data['current_page_id'].'\'') or error('Unable to fetch topic info', __FILE__, __LINE__, $db->error()); }
    if ($current_page == "viewforum.php") { $current_page_name = $db->query('SELECT forum_name FROM '.$db->prefix.'forums WHERE id=\''.$user_data['current_page_id'].'\'') or error('Unable to fetch forum info', __FILE__, __LINE__, $db->error()); }
    if ($current_page == "profile.php") { $current_page_name = $db->query('SELECT username FROM '.$db->prefix.'users WHERE id=\''.$user_data['current_page_id'].'\'') or error('Unable to fetch user info', __FILE__, __LINE__, $db->error()); }
    if ($current_page == "post.php" || $current_page == "edit.php") { echo"\t\t\t\t\t".'<td>'.$lang_online[$user_data['current_page']].': <b><a href="'.PUN_ROOT.'viewtopic.php?id='.$user_data['current_page_id'].'">'.$db->result($current_page_name, 0).'</a></b></td>'."\n";}
    
    else { echo"\t\t\t\t\t".'<td style="text-align: left;">'.$lang_online[$user_data['current_page']].': <b><a href="'.$user_data['current_page'].'?id='.$user_data['current_page_id'].'">'.$db->result($current_page_name, 0).'</a></b></td>'."\n";}

}else if ((@$lang_online[$user_data['current_page']]) == '')
        echo"\t\t\t\t\t".'<td style="text-align: left;">'.$lang_online['Hiding Somewhere'].'</td>'."\n";
    else
        echo"\t\t\t\t\t".'<td style="text-align: left;"><a href="'.$user_data['current_page'].'">'.$lang_online[$user_data['current_page']].'</a></td>'."\n";    


echo"\t\t\t\t\t".'<td style="text-align: center;">'.format_time($user_data['logged']).'</td>'."\n";

if ($pun_user['g_id'] <= PUN_MOD) echo"\t\t\t\t\t".'<td style="text-align: center;"><a href="'.PUN_ROOT.'admin_users.php?show_users='.$user_data['current_ip'].'">'.$user_data['current_ip'].'</a></td>'."\n";
echo"\t\t\t\t".'</tr>'."\n";
} } }
else { echo "\t\t\t\t".'<tr><td colspan="4">'.$lang_online['No users'].'</td>'."\n\t\t\t\t".'</tr>'."\n"; }
?>
                        </table>
        </div>
    </div>
</div>

<?php
require PUN_ROOT.'footer.php';

i think it has some thing to be added to

 
if ($current_page == "viewtopic.php" || $current_page == "post.php") { $current_page_name = $db->query('SELECT subject FROM '.$db->prefix.'topics WHERE id=\''.$user_data['current_page_id'].'\'') or error('Unable to fetch topic info', __FILE__, __LINE__, $db->error()); }
    if ($current_page == "viewforum.php") { $current_page_name = $db->query('SELECT forum_name FROM '.$db->prefix.'forums WHERE id=\''.$user_data['current_page_id'].'\'') or error('Unable to fetch forum info', __FILE__, __LINE__, $db->error()); }
    if ($current_page == "profile.php") { $current_page_name = $db->query('SELECT username FROM '.$db->prefix.'users WHERE id=\''.$user_data['current_page_id'].'\'') or error('Unable to fetch user info', __FILE__, __LINE__, $db->error()); }
    if ($current_page == "post.php" || $current_page == "edit.php") { echo"\t\t\t\t\t".'<td>'.$lang_online[$user_data['current_page']].': <b><a href="'.PUN_ROOT.'viewtopic.php?id='.$user_data['current_page_id'].'">'.$db->result($current_page_name, 0).'</a></b></td>'."\n";}
    if ($current_page == "page.php" || $current_page == "page.php") { $current_page_name = $db->query('SELECT subject FROM '.$db->prefix.'pages WHERE id=\''.$user_data['current_page_id'].'\'') or error('Unable to fetch topic info', __FILE__, __LINE__, $db->error()); }

and the lang file:

<?php

$lang_online = array(

'Online List'            =>        'Online List',
'Detailed list'            =>        'Detailed List',
'Online list'            =>        'Online List',
'IP'                    =>        'IP',
'Guest'                    =>        'Guest',
'Last action'            =>        'Last Action',
'Online'                =>        'Online',
'Time'                    =>        'Time',
'No users'                =>        'No Users online.',
'Hiding Somewhere'        =>          'Hiding somewhere :)',
'/online.php'            =>        'Viewing users online list',
'/register.php'            =>        'Registering',
'/resources/faq.php'                =>        'Viewing FAQ',
'/calendar.php'            =>        'Viewing Calendar',
'/misc.php'                =>            'Miscellaneous',
'/message_list.php'        =>        'Managing private messages',
'/message_send.php'        =>        'Managing private messages',
'/message_delete.php'    =>        'Managing private messages',
'/index.php'                =>        'Viewing board index',
'/help.php'                =>        'Viewing help files',
'/login.php'                =>        'Logging in...',
'/post.php'                =>        'Posting a new message',
'/edit.php'                =>        'Editing...',
'/delete.php'            =>        'Deleting Message(s)',
'/profile.php'            =>        'Viewing profile',
'/search.php'            =>        'Searching...',
'/userlist.php'            =>        'Viewing user list',
'/viewtopic.php'            =>        'Viewing topic',
'/viewforum.php'            =>        'Viewing forum',
'/admin_index.php'        =>        'Viewing board index',
'/admin_bans.php'        =>        'Viewing board index',
'/admin_categories.php'    =>        'Viewing board index',
'/admin_censoring.php'    =>        'Viewing board index',
'/admin_forums.php'        =>        'Viewing board index',
'/admin_maintenance.php'    =>        'Viewing board index',
'/admin_options.php'        =>        'Viewing board index',
'/admin_permissions.php'    =>        'Viewing board index',
'/admin_prune.php'        =>        'Viewing board index',
'/admin_ranks.php'        =>        'Viewing board index',
'/admin_reports.php'        =>        'Viewing board index',
'/admin_users.php'        =>        'Viewing board index',
'/admin_modules.php'        =>        'Viewing board index',

);

oh sorry ... i ddint have it at the bigginning ... i copied the wrong code its like this

base_url = 'http://supermag.exofire.net';

realy

damaxxed wrote:

Hmm.. strange, SuperMAG. I would like to help you and fix the problem. The only thing you have to do is tell me your $base_url (you find it in config.php):

$base_url = 'http://***';

my base url is

base_url = 'http://supermag.exofire.net/';

Smartys wrote:

include/essentials.php, PUN_DISABLE_HOOKS.

thanks i will do that untill damaxxed get a solution

man ... i have a huge problem ... http://supermag.exofire.net

after i installed this extension ... the every page redirect ot HTTP.com
like
http://www.http.com//supermag.exofire.net/

is there any other way to remove that extension

672

(33 replies, posted in PunBB 1.2 troubleshooting)

hea guys i change the hosting and the new errors appear ... in the main page there are five and in the forum page there are 11

i changed the hosting and the error was gone ... so thanks for nothing

i changed the hosting ... and its working now ... that hostings had a lot of issues ... thanks guys

MattF wrote:
SuperMAG wrote:
elbekko wrote:

What it says.

can u be a little more clear ... i am new to hosting and english

You have a proxy server in front of the web server which is filtering the client connections.

so how can i fix it