1) Threads remaining unread, even when read
2) Author appearing under thread title
3) Show new posts since last visit doesn't work


Will have to revisit this.

cheers,

viewforum code:




************************************************************************/


define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';


if ($pun_user['g_read_board'] == '0')
    message($lang_common['No view']);


$id = isset($_GET['id']) ? intval($_GET['id']) : 0;
if ($id < 1)
    message($lang_common['Bad request']);

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

// Load poll language file
require PUN_ROOT.'lang/'.$pun_user['language'].'/polls.php';

// Fetch some info about the forum
$result = $db->query('SELECT f.forum_name, f.redirect_url, f.moderators, f.num_topics, f.sort_by, fp.post_topics FROM '.$db->prefix.'forums AS f LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND f.id='.$id) or error('Unable to fetch forum info', __FILE__, __LINE__, $db->error());
if (!$db->num_rows($result))
    message($lang_common['Bad request']);

$cur_forum = $db->fetch_assoc($result);

// Is this a redirect forum? In that case, redirect!
if ($cur_forum['redirect_url'] != '')
{
    header('Location: '.$cur_forum['redirect_url']);
    exit;
}

// Sort out who the moderators are and if we are currently a moderator (or an admin)
$mods_array = array();
if ($cur_forum['moderators'] != '')
    $mods_array = unserialize($cur_forum['moderators']);

$is_admmod = ($pun_user['g_id'] == PUN_ADMIN || ($pun_user['g_id'] == PUN_MOD && array_key_exists($pun_user['username'], $mods_array))) ? true : false;

// Can we or can we not post new topics?
if (($cur_forum['post_topics'] == '' && $pun_user['g_post_topics'] == '1') || $cur_forum['post_topics'] == '1' || $is_admmod)
    $post_link = "\t\t".'<p class="postlink conr"><a href="post.php?fid='.$id.'">'.$lang_forum['Post topic'].'</a> <BR /> <a href="poll.php?fid='.$id.'">'.$lang_polls['New poll'].'</a></p>'."\n";
else
    $post_link = '';


// Determine the topic offset (based on $_GET['p'])
$num_pages = ceil($cur_forum['num_topics'] / $pun_user['disp_topics']);

$p = (!isset($_GET['p']) || $_GET['p'] <= 1 || $_GET['p'] > $num_pages) ? 1 : $_GET['p'];
$start_from = $pun_user['disp_topics'] * ($p - 1);

// Generate paging links
$paging_links = $lang_common['Pages'].': '.paginate($num_pages, $p, 'viewforum.php?id='.$id);


$page_title = pun_htmlspecialchars($pun_config['o_board_title'].' · '.$cur_forum['forum_name']);
define('PUN_ALLOW_INDEX', 1);
require PUN_ROOT.'header.php';

?>
<div class="linkst">
    <div class="inbox">
        <p class="pagelink conl"><?php echo $paging_links ?></p>
<?php echo $post_link ?>
        <ul><li><a href="index.php"><?php echo $lang_common['Index'] ?></a> </li><li>» <?php echo pun_htmlspecialchars($cur_forum['forum_name']) ?></li></ul>
        <div class="clearer"></div>
    </div>
</div>

<div id="vf" class="blocktable">
    <h2><span><?php echo pun_htmlspecialchars($cur_forum['forum_name']) ?></span></h2>
    <div class="box">
        <div class="inbox">
            <table cellspacing="0">
            <thead>
                <tr>
                    <th class="tc0" scope="col"> </th>
                    <th class="tcl" scope="col"><?php echo $lang_common['Topic'] ?></th>
                    <th class="tc2" scope="col"><?php echo $lang_common['Replies'] ?></th>
                    <th class="tcA" scope="col"><?php echo $lang_common['Author'] ?></th>
                    <th class="tc3" scope="col"><?php echo $lang_forum['Views'] ?></th>
                    <th class="tcr" scope="col"><?php echo $lang_common['Last post'] ?></th>
                </tr>
            </thead>
            <tbody>
<?php

// Fetch list of topics to display on this page
if ($pun_user['is_guest'] || $pun_config['o_show_dot'] == '0')
{
    // Without "the dot"
    $sql = 'SELECT id, poster, subject, posted, last_post, last_post_id, last_poster, num_views, num_replies, closed, sticky, moved_to, question FROM '.$db->prefix.'topics WHERE forum_id='.$id.' ORDER BY sticky DESC, '.(($cur_forum['sort_by'] == '1') ? 'posted' : 'last_post').' DESC LIMIT '.$start_from.', '.$pun_user['disp_topics'];
}
else
{
    // With "the dot"
    switch ($db_type)
    {
        case 'mysql':
        case 'mysqli':
            $sql = 'SELECT p.poster_id AS has_posted, t.id, t.subject, t.poster, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to FROM '.$db->prefix.'topics AS t LEFT JOIN '.$db->prefix.'posts AS p ON t.id=p.topic_id AND p.poster_id='.$pun_user['id'].' WHERE t.forum_id='.$id.' GROUP BY t.id ORDER BY sticky DESC, '.(($cur_forum['sort_by'] == '1') ? 'posted' : 'last_post').' DESC LIMIT '.$start_from.', '.$pun_user['disp_topics'];
            break;

        case 'sqlite':
            $sql = 'SELECT p.poster_id AS has_posted, t.id, t.subject, t.poster, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to FROM '.$db->prefix.'topics AS t LEFT JOIN '.$db->prefix.'posts AS p ON t.id=p.topic_id AND p.poster_id='.$pun_user['id'].' WHERE t.id IN(SELECT id FROM '.$db->prefix.'topics WHERE forum_id='.$id.' ORDER BY sticky DESC, '.(($cur_forum['sort_by'] == '1') ? 'posted' : 'last_post').' DESC LIMIT '.$start_from.', '.$pun_user['disp_topics'].') GROUP BY t.id ORDER BY t.sticky DESC, t.last_post DESC';
            break;

        default:
            $sql = 'SELECT p.poster_id AS has_posted, t.id, t.subject, t.poster, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to FROM '.$db->prefix.'topics AS t LEFT JOIN '.$db->prefix.'posts AS p ON t.id=p.topic_id AND p.poster_id='.$pun_user['id'].' WHERE t.forum_id='.$id.' GROUP BY t.id, t.subject, t.poster, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to, p.poster_id ORDER BY sticky DESC, '.(($cur_forum['sort_by'] == '1') ? 'posted' : 'last_post').' DESC LIMIT '.$start_from.', '.$pun_user['disp_topics'];
            break;

    }
}

$result = $db->query($sql) or error('Unable to fetch topic list', __FILE__, __LINE__, $db->error());

// If there are topics in this forum.
if ($db->num_rows($result))
{
    while ($cur_topic = $db->fetch_assoc($result))
    {
        $icon_text = $lang_common['Normal icon'];
        $item_status = '';
        $icon_type = 'icon';
        $author = pun_htmlspecialchars($cur_topic['poster']);

        if ($cur_topic['moved_to'] == null)
            $last_post = '<a href="viewtopic.php?pid='.$cur_topic['last_post_id'].'#p'.$cur_topic['last_post_id'].'">'.format_time($cur_topic['last_post']).'</a><br /><span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['last_poster']).'</span>';
        else
            $last_post = ' ';

        if ($pun_config['o_censoring'] == '1')
            $cur_topic['subject'] = censor_words($cur_topic['subject']);

        if ($cur_topic['question'] != '') {
            if ($pun_config['o_censoring'] == '1')
                $cur_topic['question'] = censor_words($cur_topic['question']);
       
       
            if ($cur_topic['moved_to'] != 0)
                $subject = $lang_forum['Moved'].': '.$lang_polls['Poll'].': <a href="viewpoll.php?id='.$cur_topic['moved_to'].'">'.pun_htmlspecialchars($cur_topic['question']).'</a><br /> <span class="byuser"><b>'.pun_htmlspecialchars($cur_topic['subject']).'</b> '.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).'</span>';
            else if ($cur_topic['closed'] == '0')
                $subject = $lang_polls['Poll'].': <a href="viewpoll.php?id='.$cur_topic['id'].'">'.pun_htmlspecialchars($cur_topic['question']).'</a><br \> <span class="byuser"><b>'.pun_htmlspecialchars($cur_topic['subject']).'</b> '.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).'</span>';
            else
            {
                $subject = $lang_polls['Poll'].': <a href="viewpoll.php?id='.$cur_topic['id'].'">'.pun_htmlspecialchars($cur_topic['question']).'</a><br /> <span class="byuser"><b>'.pun_htmlspecialchars($cur_topic['subject']).'</b> '.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).'</span>';
                $icon_text = $lang_common['Closed icon'];
                $item_status = 'iclosed';
            }

        // MOD: MARK TOPICS AS READ - 1 LINE MODIFIED CODE FOLLOWS
        if (!$pun_user['is_guest'] && topic_is_new($cur_topic['id'], $id,  $cur_topic['last_post']) && $cur_topic['moved_to'] == null)

        {
                $icon_text .= ' '.$lang_common['New icon'];
                $item_status .= ' inew';
                $icon_type = 'icon inew';

   
                $subject = '<strong>'.$subject.'</strong>';
                $subject_new_posts = '<span class="newtext">[ <a href="viewpoll.php?id='.$cur_topic['id'].'&action=new" title="'.$lang_common['New posts info'].'">'.$lang_common['New posts'].'</a> ]</span>';
            }
            else
                $subject_new_posts = null;
   
            // Should we display the dot or not? smile
            if (!$pun_user['is_guest'] && $pun_config['o_show_dot'] == '1')
            {
                if ($cur_topic['has_posted'] == $pun_user['id'])
                    $subject = '<strong>·</strong> '.$subject;
                else
                    $subject = '  '.$subject;
            }
        } else {
            if ($cur_topic['moved_to'] != 0)
                $subject = $lang_forum['Moved'].': <a href="viewtopic.php?id='.$cur_topic['moved_to'].'">'.pun_htmlspecialchars($cur_topic['subject']).'</a> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).'</span>';
            else if ($cur_topic['closed'] == '0')
                $subject = '<a href="viewtopic.php?id='.$cur_topic['id'].'">'.pun_htmlspecialchars($cur_topic['subject']).'</a> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).'</span>';
            else
            {
                $subject = '<a href="viewtopic.php?id='.$cur_topic['id'].'">'.pun_htmlspecialchars($cur_topic['subject']).'</a> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).'</span>';
                $icon_text = $lang_common['Closed icon'];
                $item_status = 'iclosed';

            }
   
            if (!$pun_user['is_guest'] && $cur_topic['last_post'] > $pun_user['last_visit'] && $cur_topic['moved_to'] == null)
            {
                $icon_text .= ' '.$lang_common['New icon'];
                $item_status .= ' inew';
                $icon_type = 'icon inew';

   
                $subject = '<strong>'.$subject.'</strong>';
                $subject_new_posts = '<span class="newtext">[ <a href="viewtopic.php?id='.$cur_topic['id'].'&action=new" title="'.$lang_common['New posts info'].'">'.$lang_common['New posts'].'</a> ]</span>';
            }
            else
                $subject_new_posts = null;
   
            // Should we display the dot or not? smile
            if (!$pun_user['is_guest'] && $pun_config['o_show_dot'] == '1')
            {
                if ($cur_topic['has_posted'] == $pun_user['id'])
                    $subject = '<strong>·</strong> '.$subject;
                else
                    $subject = '  '.$subject;
            }
        }

        if ($cur_topic['sticky'] == '1')
        {
            $subject = '<span class="stickytext">'.$lang_forum['Sticky'].': </span>'.$subject;
            $item_status .= ' isticky';
            $icon_text .= ' '.$lang_forum['Sticky'];
        }

        $num_pages_topic = ceil(($cur_topic['num_replies'] + 1) / $pun_user['disp_posts']);

        if ($num_pages_topic > 1)
        {
            if ($cur_topic['question'] != '')
                $subject_multipage = '[ '.paginate($num_pages_topic, -1, 'viewpoll.php?id='.$cur_topic['id']).' ]';
            else
                $subject_multipage = '[ '.paginate($num_pages_topic, -1, 'viewtopic.php?id='.$cur_topic['id']).' ]';
        }
        else
            $subject_multipage = null;

        // Should we show the "New posts" and/or the multipage links?
        if (!empty($subject_new_posts) || !empty($subject_multipage))
        {
            $subject .= '  '.(!empty($subject_new_posts) ? $subject_new_posts : '');
            $subject .= !empty($subject_multipage) ? ' '.$subject_multipage : '';
        }

?>
                <tr<?php if ($item_status != '') echo ' class="'.trim($item_status).'"'; ?>>
                    <td class="tc0"> </td>
                    <td class="tcl">
                        <div class="intd">
                            <div class="<?php echo $icon_type ?>"><div class="nosize"><?php echo trim($icon_text) ?></div></div>
                            <div class="tclcon">
                                <?php echo $subject."\n" ?>
                            </div>
                        </div>
                    </td>
                    <td class="tc2"><?php echo ($cur_topic['moved_to'] == null) ? $cur_topic['num_replies'] : ' ' ?></td>
                    <td class="tcA"><?php echo ($cur_topic['moved_to'] == null) ? $author : ' ' ?></td>
                    <td class="tc3"><?php echo ($cur_topic['moved_to'] == null) ? $cur_topic['num_views'] : ' ' ?></td>
                    <td class="tcr"><?php echo $last_post ?></td>
                </tr>
<?php

    }
}
else
{

?>
                <tr>
                    <td class="tcl" colspan="5"><?php echo $lang_forum['Empty forum'] ?></td>
                </tr>
<?php

}

?>
            </tbody>
            </table>
        </div>
    </div>
</div>

<div class="linksb">
    <div class="inbox">
        <p class="pagelink conl"><?php echo $paging_links ?></p>
<?php echo $post_link ?>
        <ul><li><a href="index.php"><?php echo $lang_common['Index'] ?></a> </li><li>» <?php echo pun_htmlspecialchars($cur_forum['forum_name']) ?></li></ul>
        <div class="clearer"></div>
    </div>
</div>
<?php

$forum_id = $id;
$footer_style = 'viewforum';
require PUN_ROOT.'footer.php';

Done. Polls working fine, however, it would appear threads now remain 'unread'.

Also, if you take a look here:

http://www.rumourwhores.com/board/viewforum.php?id=6

The 'author' appears under the thread title and in the thread column.

I'm guessing that this has to do with the viewforum file?

I see the problem. I dont think the readme file mentions the plugin or moderatepoll files. Anyways, about to try again. Thanks for the support.

Have you installed it on pun 1.2.12?

Just wondering whether there is a admin option with this mod? In the readme file for an install (which isnt an upgrade) it doesnt say anything about using moderatepoll.

I've fixed the problem I had, uploaded all the files. The first problem I encountered was that when you clicked on a forum link, it browsed to a blank page. I think I might have worked out the problem here - however, can someone confirm this mod will defo work with my version of pun and if so - whether I need the moderatepoll file?

Thats the prob though. Column has been removed but I still get the same error message.

Hi,

I've recently attempted to use the easy poll mod (v1.1.3). I'm running punbb 1.2.12. I've edited the install_mod file to include this version number.


Basically, upload the install_mod.php file and run it, only to get the following error:


File: /var/www/html/board/install_mod.php
Line: 22

PunBB reported: Unable to add columns to table

Database reported: Duplicate column name 'question' (Errno: 1060)




Now, in the past, I attempted to add an other mod (possibly the + version of Easy Poll). Didnt quite work, with some of my pages not displaying. I removed and replaced the files with the originals.

Having gone back for a re-attempt, this time with the v.1.1.3 version, having had the above error, I was advised to remove any legacy tables from the sql database which I did. The error still appears.

Any ideas if its possible to somehow tidy this up and get the mod installed?


Thanks.

That makes sense.

With restoring posts from a backup so they reappear - is this quite simple to do?

Current database has no posts by him in the backup.

An older database appears to have posts by him. Can these be used?

I'm actually now using SQL tools to back up the users table and the database. Interestingly, the backup made a week back via the control panel does include his legacy 'deleted' posts. Weird.

Cheers once more.

With the post count, do you mean that the count itself is simply incorrect and that their actual posts all still remain in tact?

Morning.

Thanks for your help on this.

Added back the two missing users. Interestingly, on the face of it, their old posts (going back to when the forum first went live) and their most recent all appear to be there, yet their post count would reflect otherwise, so it would seem that some posts have gone missing - but this doesnt worry me too much.

On the back of this, I used the query you suggested on another user. This particular person was, in a word, a git. A former admin, he through a hissy fit and deleted himself.

Now, in the backup, I can see this users posts. Within SQL, I can find the user. Having run the query, it appears that he has been added back (at least when the query is run, SQL doesnt return an error) but he doesnt appear on the forum.

The prob is, I cant find any posts within SQL made by him - which is whats confusing me if I can see his posts in the backup.

Not sure if anyone has any suggestions on this....?

Mate, run that....seems to work. Its restored that particular user smile

2 users to go....

id -----------------                 int(10) unsigned             PRI      NULL      auto_increment
group_id  -----------------      int(10) unsigned                 4     
username  -----------------     varchar(200)           MUL           
password  -----------------     
email      -----------------           varchar(50)                       
title      -----------------             varchar(50)     YES           NULL     
realname ----------------- varchar(40)     YES           NULL     
url -----------------                 varchar(100)     YES           NULL     
jabber -----------------               varchar(75)     YES           NULL     
icq      -----------------            varchar(12)     YES           NULL     
msn      -----------------           varchar(50)     YES           NULL     
aim      -----------------           varchar(30)     YES           NULL     
yahoo      -----------------           varchar(30)     YES           NULL     
location      -----------------  varchar(30)     YES           NULL     
use_avatar      ----------------- tinyint(1)                 0     
signature      -----------------  text     YES           NULL     
disp_topics      -----------------  tinyint(3) unsigned     YES           NULL     
disp_posts      -----------------  tinyint(3) unsigned     YES           NULL     
email_setting  -----------------      tinyint(1)                 1     
save_pass      -----------------   tinyint(1)                 1     
notify_with_post      ----------------- tinyint(1)                 0     
show_smilies      ----------------- tinyint(1)                 1     
show_img      ----------------- tinyint(1)                 1     
show_img_sig      ----------------- tinyint(1)                 1     
show_avatars      ----------------- tinyint(1)                 1     
show_sig      ----------------- tinyint(1)                 1     
timezone      ----------------- float                 0     
language      ----------------- varchar(25)                 English     
style             -----------------   varchar(25)                 Oxygen     
num_posts      ----------------- int(10) unsigned                 0     
last_post      ----------------- int(10) unsigned     YES           NULL     
registered      ----------------- int(10) unsigned           MUL     0     
registration_ip      ----------------- varchar(15)                 0.0.0.0     
last_visit            -----------------   int(10) unsigned                 0     
admin_note        -----------------  varchar(30)     YES           NULL     
activate_string      ----------------- varchar(50)     YES           NULL     
activate_key         ----------------- varchar(8)     YES           NULL     
karma      ----------------- int(20)                 0     
read_topics      -----------------               mediumtext     YES           NULL     
reputation_enable      -----------------          smallint(6)     YES           1     
reputation_enable_adm      -----------------       tinyint(1) unsigned     YES           1

Righto,

Via SQL, entered the following:


INSERT INTO `punbb_users` VALUES (5, 4, 'Dandy', '', '', 'Got Ears?', NULL, NULL, NULL, NULL, 'golXXXXXend@hotmail.com', NULL, NULL, 'Seat BB105, Upper Deck, Dick D', 0, 'Hate is baggage. Life''s too short to be pissed off all the time.', NULL, NULL, 1, 1, 0, 1, 1, 1, 1, 1, 1, 'English', 'Oxygen', 826, 1150221176, 1123433477, '0.0.0.0', 1150229329, NULL, NULL, NULL);

hit go. got the following response:



SQL query:

INSERT INTO `punbb_users`
VALUES ( 5, 4, 'Dandy', '', '', 'Got Ears?', NULL , NULL , NULL , NULL , 'goldiethelXXXXgend@hotmail.com', NULL , NULL , 'Seat BB105, Upper Deck, Dick D', 0, 'Hate is baggage. Life''s too short to be pissed off all the time.', NULL , NULL , 1, 1, 0, 1, 1, 1, 1, 1, 1, 'English', 'Oxygen', 826, 1150221176, 1123433477, '0.0.0.0', 1150229329, NULL , NULL , NULL ) ;

MySQL said:
#1136 - Column count doesn't match value count at row 1

A mate is saying that there is a fundamental problem between the two, probably a missing field. I'm a bit lost in understanding how to translate any of the above into table format to work out what the missing element is.


/scratches head

problem is, the file is huge. 236mb. dont see how i can email it sad

Well, since only the users table crashed, the posts should still exist in the database. The only thing you need to do is add the users back with the proper IDs.

So, what needs to be done, guv? smile

I unzipped the user back up. Its full of punbb posts. Includes even someone (a former admin) who deleted himself an age ago.


Examples:

INSERT INTO `punbb_posts` VALUES (17970, 'treelo', 38, '80.193.181.235', NULL, 'sell outs\r\n\r\nthats all spurs are', 0, 1140456042, NULL, NULL, 2193);
INSERT INTO `punbb_posts` VALUES (17971, 'treelo', 38, '80.193.181.235', NULL, 'first roasting on the season?', 0, 1140456083, NULL, NULL, 2207);
INSERT INTO `punbb_posts` VALUES (17972, 'Elzar', 3, '212.32.107.22', NULL, 'True. Apart from the Stacki bit.\r\n\r\nLike i said we''ll have to stop our own trolling, and learn to ignore rather than ''bite''. I still can''t have respect for someone that types ''u'' instead of ''you'' though.\r\n\r\nWe can hide the post counts on PunBB. Maybe little things like that will stop cliques?', 0, 1140456501, NULL, NULL, 1631);

Mmmm. Looks like maybe I didnt back up the user tables specifically.

What I have is as follows:

Within my control panel, under 'Backup Data' I have the option to back up the site and back up users.

The site backup is 40.2Mb.
The user back up is....236Mb.

These backups were made via the main control panel options and not the MySQL admin pages.


Not sure if the user back up includes the tables you are referring too. Anything you can recommend?

Yeah, sorry mate.....I sound a bit daft. Not at home at the moment, and my terminology sucks trying to explain this. But yeah, in my control panel you can back up the database and the users table. Not sure on the file size of the users table.

I'll check once home, and hopefully email you the backup and the two missing usernames.

If this works out, you are a life saver....!!

Smartys, thanks.

So restoring the rows would add back the two users and all their posts? Which backup are you refering to? The user list?

If I wanted to restore the database, from one week ago - can I do so by just restoring that one file? Or do I also restore the users list too? I know I will lose the past weeks posts etc, but thats not too much of a concern.

Late yesterday evening, this happened:


File: /var/www/html/board/include/functions.php
Line: 45

PunBB reported: Unable to fetch user information

Database reported: Can't open file: 'punbb_users.MYI' (errno: 145) (Errno: 1016)

So, spoke to my site host and they stated:


The table punbb_users in your database had crashed, so I ran the "REPAIR" command from your MySQLAdmin section and now this is fixed.

Thank you,

Regards,

Site is back up and running, however, 2 long standing members have disappeared and all their posts have gone too.

A week back, I did back up (via the control panel of my host/site) the user list. Question I have is, can I use this list and implmement it over the current list - and if I do so will it cause more problems? Will it bring back the two missing members and their lost posts?

cheers. owe you a pint.

guardian34 wrote:

header.php

<title><?php echo $page_title ?></title>

I deleted this line, but it made no difference. Should I be editing it some other way?

/Dunce hat on

Go to: http://www.rumourwhores.com/board/index.php

Right click on page and view page source:


<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>rw</title>
<link rel="stylesheet" type="text/css" href="style/sibirsky_org.css" />
</head>
<body>


What file can i find this text in? I want to remove the rw.

thanks,
n

Seems in the control panel, it forces you to have something entered and thus (as you'll see from my link) it sort of ruins the logo at the top of the screen.

How can this option be removed (if its of course possible)?


http://www.rumourwhores.com/board/index.php