Recent Topics

1 Jul 21, 2005 20:27    

This looks like the relevant block of code, located in the /blog/skins/kubrick2evo/_main.php file, but I'm not getting a list of recent referers in the sidebar.. Is there some other place I should look for a possible cause?


<?php if( false ) { // nice little cheat here! ?>
<?php if ($disp != 'stats') { ?>
<div class="bSideItem">
	<h3><?php echo T_(': Recent Referers :') ?></h3><br />
	<?php refererList(5, 'global', 0, 0, 'no', '', ($blog > 1) ? $blog : ''); ?>
	<ul>
	<?php if( count( $res_stats ) ) foreach( $res_stats as $row_stats ) { ?>
	<li><a href="<?php stats_referer() ?>" rel="nofollow"><?php stats_basedomain() ?></a></li>
	<?php } // End stat loop ?>
	<li><a href="<?php $Blog->disp( 'blogstatsurl', 'raw' ) ?>"><?php echo T_('more...') ?></a></li>
	</ul>
	<br />
	<h3><?php echo T_(': Top Referers :') ?></h3>
	<?php refererList(5, 'global', 0, 0, 'no', 'baseDomain', ($blog > 1) ? $blog : ''); ?>
	<ul>
	<?php if( count( $res_stats ) ) foreach( $res_stats as $row_stats ) { ?>
	<li><a href="<?php stats_referer() ?>" rel="nofollow"><?php stats_basedomain() ?></a></li>
	<?php } // End stat loop ?>
	<li><a href="<?php $Blog->disp( 'blogstatsurl', 'raw' ) ?>"><?php echo T_('more...') ?></a></li>
	</ul>
	</div>
	<?php } ?>
	<?php } // end nice little cheat! ?>

jj.

2 Jul 21, 2005 23:05

Here's a quick trick to narrow it down. Try viewing the page with one of the stock skins. If that works, then you know you're missing some code in your skin. If it doesn't, then there's something wrong with the whole b2evo install.


Form is loading...