MyBB Community Forums

Full Version: I must be missing my admin cp images...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
how would i check that?? sorry if it's simple lol.
I thought you just said you checked it??

ACP > Templates & Style > Templates > **expand template set** > Index Page Templates > index
No I checked the Index.php.

Um in the ACP
<html><head><title>{$mybb->settings['bbname']}</title>{$headerinclude}<script type="text/javascript"><!--	lang.no_new_posts = "{$lang->no_new_posts}";	lang.click_mark_read = "{$lang->click_mark_read}";// --></script></head><body>{$header}{$forums}{$boardstats}<dl class="forum_legend smalltext">	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>	<dd>{$lang->new_posts}</dd>	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>	<dd>{$lang->no_new_posts}</dd>	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>	<dd>{$lang->forum_locked}</dd></dl><br style="clear: both" />{$footer}</body></html>
Looks like something's been edited and most of the code is commented out. Replace with this:

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
	lang.no_new_posts = "{$lang->no_new_posts}";
	lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$forums}
{$boardstats}

<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.png" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.png" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/offlock.png" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>
<br style="clear: both" />
{$footer}
</body>
</html>

Or just revert the template to default.
Also try turning G-Zip off.
Admin CP --> Configuration --> Server and Optimization Options --> Use GZip Page Compression?
I think..
okay changed the code...still a blank
Did you do what rh1n0 suggested??
Yeah it's off
Pages: 1 2