MyBB Community Forums

Full Version: problem in - footer it is not shown
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
problem in - footer it is not shown

today i want to use a plugin (Page Was Last Updated)..
after i active it .. then i want to change same thing in side plugine .. and Deactivate it ..
and i check forum --- there is no footer ??!!
[attachment=16394]

and i re-uploaded (forumdisplay)
and checked templet-footer ..it is ok

but know i havent footer like these :
these picture it before problem [attachment=16395]
This isn't anything to do with the Merge System, moved to plugin support.

Does it show on any pages or not at all??
it shown in all page but in index it not shown ..
Make sure {$footer} is in your index template.
i checked that there is {$footer} in index template.
?!!
plz what i mast to do ??
the footer part that not shown it is :
[attachment=16397]
and i tread with change Themes .. and i test it but still same problem ??
---
can i re-uploaded same fill ?! or what i mast to do plz if you cane help about it ??
plz i need same help who cane fıxe my problem !?
that is plugin cod : plz if same one can know in these code which part changed in temple :

<?php
/**
 * This Plugin and all its coding is originally www.mybboard.110mb.com 's Property.
 * As a Buyier , You SHOULD abide by the License Agreemant through which this Plugin is releasing.
 * Copyright © 2009 <a href="http://www.mybboard.110mb.com">MyBBoard</a> 
 */

// Disallow direct access to this file for security reasons
if(!defined("IN_MYBB"))
{
	die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}

function page_last_updated_info()
{

	return array(
		"name"		=> "Page Was Last Updated",
		"description"	=> "This Plugin Will Show The Page was Last Updated in Boardstats.",
		"website"	=> "http://www.mybboard.biz",
		"author"	=> "ghazal",
		"authorsite"	=> "http://www.mybboard.biz",
		"version"	=> "1.0 ",
		"compatibility" => "14*",
	);
}

//All the activation processes go here
function page_last_updated_activate()
{

     require MYBB_ROOT.'/inc/adminfunctions_templates.php';
    find_replace_templatesets("index_stats", '#'.preg_quote('{$lang->stats_mostonline}').'#' , '{$lang->stats_mostonline} <br /> <script language="Javascript"><!--

document.write("<i>Last updated: "+document.lastModified+"</i>");

//-->
</script>' );

}

//All deactivation processes go here
function page_last_updated_deactivate()
{

    require MYBB_ROOT.'/inc/adminfunctions_templates.php';
    find_replace_templatesets("index_stats", '#'.preg_quote('{$lang->stats_mostonline} <br /> <script language="Javascript"><!--

document.write("<i>Last updated: "+document.lastModified+"</i>");

//-->
</script>').'#' , '{$lang->stats_mostonline}',0);

} 

// Thankyou for using Page Last Updated Plugin Developed By ghazal.

?>
thanx matt
problime know it is fixed with
Reverted the index_stats in template.