keep unread flags

Wondering why that MOD you have won't install correctly? Let's take a look
Forum rules
DO NOT give out any FTP passwords to anyone! There is no reason to do so! If you need help badly enough, create a temporary FTP account that is restricted to only the files that you need help with and give the information for that. Giving out FTP information can be very dangerous!
Locked
n2oz29
Registered User
Posts: 30
Joined: Sat Dec 02, 2006 11:45 pm

keep unread flags

Post by n2oz29 »

When installing this mod with easy mod I get this error .


Critical Error

FIND FAILED: In file [index.php] could not find:

else
{
$unread_topics = false;
if ( $userdata['session_logged_in'] )
{
if ( !empty($new_topic_data[$forum_id]) )
{
$forum_last_post_time = 0;
while( list($check_topic_id, $check_post_time) = @each($new_topic_data[$forum_id]) )
{
if ( empty($tracking_topics[$check_topic_id]) )
{
$unread_topics = true;
$forum_last_post_time = max($check_post_time, $forum_last_post_time);
}
else
{
if ( $tracking_topics[$check_topic_id] < $check_post_time )
{
$unread_topics = true;
$forum_last_post_time = max($check_post_time, $forum_last_post_time);
}
}
}
if ( !empty($tracking_forums[$forum_id]) )
{
if ( $tracking_forums[$forum_id] > $forum_last_post_time )
{
$unread_topics = false;
}
}
if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all']) )
{
if ( $HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all'] > $forum_last_post_time )
{
$unread_topics = false;
}
}
}
}
$folder_image = ( $unread_topics ) ? $images['forum_new'] : $images['forum'];
$folder_alt = ( $unread_topics ) ? $lang['New_posts'] : $lang['No_new_posts'];
}

MOD script line #460 :: FAQ :: Report

User avatar
Poomerio
Registered User
Posts: 552
Joined: Tue Jan 02, 2007 7:09 pm
Location: 4(x - 20y) = 20

Re: keep unread flags

Post by Poomerio »

Need a little more info.
We need:
  • Link to download MOD
    MOD name
And then we can get started on this ;)

- Poomie

n2oz29
Registered User
Posts: 30
Joined: Sat Dec 02, 2006 11:45 pm

Re: keep unread flags

Post by n2oz29 »

Here is a link to the mod

MOD Name: keep unread flags
Author: asinshesq
MOD Description: This mod keeps the unread flags for a topic active until the topic is read. It also activates the new post feature for guests.

MOD Version: 2.0.6 (Updated 08/04/06)
Installation Level: Intermediate
Installation Time: ~ 30 Minutes

http://www.phpbb.com/phpBB/viewtopic.ph ... read+flags

User avatar
Poomerio
Registered User
Posts: 552
Joined: Tue Jan 02, 2007 7:09 pm
Location: 4(x - 20y) = 20

Re: keep unread flags

Post by Poomerio »

What other MODs have you installed?

- Poomie

n2oz29
Registered User
Posts: 30
Joined: Sat Dec 02, 2006 11:45 pm

Re: keep unread flags

Post by n2oz29 »

phpBB 2.0.21

Attachment Mod

EasyMOD 0.3.0 Nuttzy

Latest active topics on index 1.1.9 zparta

View posts since last visit Number 1.1.1 Shof515

Topic calendar - Part 1 (common to all setup) 1.0.1 Ptirhiik

Topic calendar - Part 2 (without Split topic type v 2 or greater) 1.0.1 Ptirhiik

Topic calendar - Part 3 (without categories hierarchy v 2.0.4 or greater) 1.0.1

Sun Dec 03, 2006 12:20 am Topic Calendar New Events 2 1.0.0

Sun Dec 03, 2006 4:56 pm Restrict Guest Access 1.0.0 (phpBB 2. Encoder

Sat Jan 28, 2007 chuck_long_urls

Disable_board_message

Change_last_visit

show_last_visited_users_1_0_0

n2oz29
Registered User
Posts: 30
Joined: Sat Dec 02, 2006 11:45 pm

Re: keep unread flags

Post by n2oz29 »

Do you think one of the mods i listed has something to do with it ?

Locked