daris / fluxbb-last-topic-on-index

0 stars 1 forks source link

Unexpected T_ELSE parse error #1

Open ghost opened 12 years ago

ghost commented 12 years ago

daris,

I have installed your last topic mod as instructed, along with the subforum instructions as well, as I make use of that mod too. Upon refreshing my forums index, I receive the following error:

Parse error: syntax error, unexpected T_ELSE in /home/kamihe5/public_html/porcelaindiaries.com/index.php on line 173

This is the code from those lines in index.php: (http://img.photobucket.com/albums/v255/RHyugi2/lasttopicerror.png)

// If there is a last_post/last_poster if ($cur_forum['last_post'] != '')

else if ($cur_forum['redirect_url'] != '')
    $last_post = '- - -';
else
    $last_post = $lang_common['Never'];

If you could help me out with the code, I would much appreciate it.

Thanks

daris commented 12 years ago

Can you post full index.php file content?

ghost commented 12 years ago

<?php

/**

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

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

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

// Get list of forums and topics with new posts since last visit if (!$pun_user['is_guest']) { $result = $db->query('SELECT t.forum_id, t.id, t.last_post FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id 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 t.last_post>'.$pun_user['last_visit'].' AND t.moved_to IS NULL') or error('Unable to fetch new topics', FILE, LINE, $db->error());

$new_topics = array();
while ($cur_topic = $db->fetch_assoc($result))
    $new_topics[$cur_topic['forum_id']][$cur_topic['id']] = $cur_topic['last_post'];

$tracked_topics = get_tracked_topics();

}

if ($pun_config['o_feed_type'] == '1') $page_head = array('feed' => ''); else if ($pun_config['o_feed_type'] == '2') $page_head = array('feed' => '');

$forum_actions = array();

// Display a "mark all as read" link if (!$pun_user['is_guest']) $forum_actions[] = ''.$lang_common['Mark all as read'].'';

$page_title = array(pun_htmlspecialchars($pun_config['o_board_title'])); define('PUN_ALLOW_INDEX', 1); define('PUN_ACTIVE_PAGE', 'index'); require PUN_ROOT.'header.php'; ################################################################################ ########################### Sub Forum MOD (start) ############################## ################################################################################ if (file_exists(PUN_ROOT.'lang/'.$pun_user['language'].'/sub_forum.php')) require PUN_ROOT.'lang/'.$pun_user['language'].'/sub_forum.php'; else require PUN_ROOT.'lang/English/sub_forum.php';

$sfdb = array();

$forums_info = $db->query('SELECT f.num_topics, f.num_posts, f.parent_forum_id, f.last_post_id, f.last_poster, f.last_post, f.id, f.forum_name, f.last_topic 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.parent_forum_id <> 0 ORDER BY f.disp_position') or error('Unable to fetch subforum list', FILE, LINE, $db->error());

while ($current = $db->fetch_assoc($forums_info)) { if (!isset($sfdb[$current['parent_forum_id']])) $sfdb[$current['parent_forum_id']] = array();

$sfdb[$current['parent_forum_id']][] = $current;

} ################################################################################ ########################### Sub Forum MOD ( end ) ############################## ################################################################################

// Print the categories and forums $result = $db->query('SELECT c.id AS cid, c.cat_name, f.id AS fid, f.forum_name, f.forum_desc, f.redirect_url, f.moderators, f.num_topics, f.num_posts, f.last_post, f.last_post_id, f.last_poster, f.last_topic, f.parent_forum_id FROM '.$db->prefix.'categories AS c INNER JOIN '.$db->prefix.'forums AS f ON c.id=f.cat_id 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.parent_forum_id IS NULL OR f.parent_forum_id=0) ORDER BY c.disp_position, c.id, f.disp_position', true) or error('Unable to fetch category/forum list', FILE, LINE, $db->error());

$cur_category = 0; $cat_count = 0; $forum_count = 0; while ($cur_forum = $db->fetch_assoc($result)) { $moderators = '';

if ($cur_forum['cid'] != $cur_category) // A new category since last iteration?
{
    if ($cur_category != 0)
        echo "\t\t\t".'</tbody>'."\n\t\t\t".'</table>'."\n\t\t".'</div>'."\n\t".'</div>'."\n".'</div>'."\n\n";

    ++$cat_count;
    $forum_count = 0;

?>

$pun_user['last_visit'] && (empty($tracked_topics['forums'][$cur_forum['fid']]) || $cur_forum['last_post'] > $tracked_topics['forums'][$cur_forum['fid']])) { // There are new posts in this forum, but have we read all of them already? foreach ($new_topics[$cur_forum['fid']] as $check_topic_id => $check_last_post) { if ((empty($tracked_topics['topics'][$check_topic_id]) || $tracked_topics['topics'][$check_topic_id] < $check_last_post) && (empty($tracked_topics['forums'][$cur_forum['fid']]) || $tracked_topics['forums'][$cur_forum['fid']] < $check_last_post)) { $item_status .= ' inew'; $forum_field_new = '[ '.$lang_common['New posts'].' ]'; $icon_type = 'icon icon-new'; break; } } } // Is this a redirect forum? if ($cur_forum['redirect_url'] != '') { $forum_field = '

'.$lang_index['Link to'].' '.pun_htmlspecialchars($cur_forum['forum_name']).'

'; $num_topics = $num_posts = '-'; $item_status .= ' iredirect'; $icon_type = 'icon'; } else { $forum_field = '

'.pun_htmlspecialchars($cur_forum['forum_name']).''.(!empty($forum_field_new) ? ' '.$forum_field_new : '').'

'; $num_topics = $cur_forum['num_topics']; $num_posts = $cur_forum['num_posts']; ################################################################################ ########################### Sub Forum MOD (start) ############################## ################################################################################ if (isset($sfdb[$cur_forum['fid']])) { foreach ($sfdb[$cur_forum['fid']] as $cur_subforum) { $num_topics += $cur_subforum['num_topics']; $num_posts += $cur_subforum['num_posts']; if ($cur_forum['last_post'] < $cur_subforum['last_post']) { $cur_forum['last_post_id'] = $cur_subforum['last_post_id']; $cur_forum['last_poster'] = $cur_subforum['last_poster']; $cur_forum['last_post'] = $cur_subforum['last_post']; $cur_forum['last_topic'] = $cur_subforum['last_topic']; } } } ################################################################################ ########################### Sub Forum MOD ( end ) ############################## ################################################################################ } if ($cur_forum['forum_desc'] != '') $forum_field .= "\n\t\t\t\t\t\t\t\t".'
'.$cur_forum['forum_desc'].'
'; // If there is a last_post/last_poster if ($cur_forum['last_post'] != '') else if ($cur_forum['redirect_url'] != '') $last_post = '- - -'; else $last_post = $lang_common['Never']; // Are there new posts since our last visit? if (!empty($sfdb) && isset($sfdb[$cur_forum['fid']])) { foreach ($sfdb[$cur_forum['fid']] as $cur_subforum) { if (!$pun_user['is_guest'] && $cur_subforum['last_post'] > $pun_user['last_visit'] && (empty($tracked_topics['forums'][$cur_subforum['id']]) || $cur_forum['last_post'] > $tracked_topics['forums'][$cur_subforum['id']])) { // There are new posts in this forum, but have we read all of them already? foreach ($new_topics[$cur_subforum['id']] as $check_topic_id => $check_last_post) { if ((empty($tracked_topics['topics'][$check_topic_id]) || $tracked_topics['topics'][$check_topic_id] < $check_last_post) && (empty($tracked_topics['forums'][$cur_subforum['id']]) || $tracked_topics['forums'][$cur_subforum['id']] < $check_last_post)) { $item_status .= ' inew'; $forum_field_new = '[ '.$lang_common['New posts'].' ]'; $icon_type = 'icon icon-new'; break; } } } } } if ($cur_forum['moderators'] != '') { $mods_array = unserialize($cur_forum['moderators']); $moderators = array(); foreach ($mods_array as $mod_username => $mod_id) { if ($pun_user['g_view_users'] == '1') $moderators[] = ''.pun_htmlspecialchars($mod_username).''; else $moderators[] = pun_htmlspecialchars($mod_username); } $moderators = "\t\t\t\t\t\t\t\t".'

('.$lang_common['Moderated by'].' '.implode(', ', $moderators).')

'."\n"; } ?> 0) echo "\t\t\t".''."\n\t\t\t".'
'.pun_htmlspecialchars($cur_subforum['forum_name']).''; // EDIT THIS FOR THE DISPLAY STYLE OF THE SUBFORUMS ON MAIN PAGE if(!empty($sub_forums_list)) { // Leave one $sub_forums_list commented out to use the other (between the ###..) ################################ // This is Single Line Wrap Style $sub_forums_list = "\t\t\t\t\t\t\t\t".''.$lang_sub_forum['Sub forums'].': '.implode(', ', $sub_forums_list)."\n"; // This is List Style //$sub_forums_list = "\n".''.$lang_sub_forum['Sub forums'].':
  --  '.implode('
  --  ', $sub_forums_list)."\n"; ################################ /* if ($cur_forum['forum_desc'] != NULL) echo "
"; */ // TO TURN OFF DISPLAY OF SUBFORUMS ON INDEX PAGE, COMMENT OUT THE FOLLOWING LINE echo $sub_forums_list; } } ?>
'."\n\t\t".'
'."\n\t".'
'."\n".'
'."\n\n"; else echo '

'.$lang_index['Empty board'].'

'; // Collect some statistics from the database if (file_exists(FORUM_CACHE_DIR.'cache_users_info.php')) include FORUM_CACHE_DIR.'cache_users_info.php'; if (!defined('PUN_USERS_INFO_LOADED')) { if (!defined('FORUM_CACHE_FUNCTIONS_LOADED')) require PUN_ROOT.'include/cache.php'; generate_users_info_cache(); require FORUM_CACHE_DIR.'cache_users_info.php'; } $result = $db->query('SELECT SUM(num_topics), SUM(num_posts) FROM '.$db->prefix.'forums') or error('Unable to fetch topic/post count', __FILE__, __LINE__, $db->error()); list($stats['total_topics'], $stats['total_posts']) = $db->fetch_row($result); if ($pun_user['g_view_users'] == '1') $stats['newest_user'] = ''.pun_htmlspecialchars($stats['last_user']['username']).''; else $stats['newest_user'] = pun_htmlspecialchars($stats['last_user']['username']); if (!empty($forum_actions)) { ?>

'.forum_number_format($stats['total_users']).'') ?>
'.forum_number_format($stats['total_topics']).'') ?>
'.forum_number_format($stats['total_posts']).'') ?>
query('SELECT user_id, ident FROM '.$db->prefix.'online WHERE idle=0 ORDER BY ident', true) or error('Unable to fetch online list', __FILE__, __LINE__, $db->error()); while ($pun_user_online = $db->fetch_assoc($result)) { if ($pun_user_online['user_id'] > 1) { if ($pun_user['g_view_users'] == '1') $users[] = "\n\t\t\t\t".'
'.pun_htmlspecialchars($pun_user_online['ident']).''; else $users[] = "\n\t\t\t\t".'
'.pun_htmlspecialchars($pun_user_online['ident']); } else ++$num_guests; } $num_users = count($users); echo "\t\t\t\t".'
'.sprintf($lang_index['Users online'], ''.forum_number_format($num_users).'').'
'."\n\t\t\t\t".'
'.sprintf($lang_index['Guests online'], ''.forum_number_format($num_guests).'').'
'."\n\t\t\t".'
'."\n"; if ($num_users > 0) echo "\t\t\t".'
'."\n\t\t\t\t".'
'.$lang_index['Online'].'
'."\t\t\t\t".implode(', ', $users).''."\n\t\t\t".'
'."\n"; else echo "\t\t\t".'
'."\n"; } else echo "\t\t\t".''."\n\t\t\t".'
'."\n"; ?>
ghost commented 12 years ago

github screwed up the formatting so heres a link to the file: http://www.box.com/s/no9zz36ucpefelsyykca

daris commented 12 years ago
if ($cur_forum['last_post'] != '')

else if ($cur_forum['redirect_url'] != '')

There is a one line missing between if and else if. Are you sure you did everything correctly?