no header for editing

Permalink
I install concrete5 on my free homepage.
http://snortop.0fees.net/concrete/...
But when i login as admin, i cant see any top editing panel.

I have to use
http://snortop.0fees.net/concrete/index.php/dashboard...

Have can i fix this?

 
planist1 replied on at Permalink Reply
planist1
Check to see if you have this in your header.php file

<?php  Loader::element('header_required'); ?>


and check to see if this is right before your </body> tag

<?php  Loader::element('footer_required'); ?>
snortop replied on at Permalink Reply
should that be under the theme?
planist1 replied on at Permalink Reply
planist1
yes,

your header.php and footer.php are probably located in the themes/yourthemename/elements folder
snortop replied on at Permalink Reply
Well im using the default theme from fresh installation.
Havent done anything as it a fresh installation.
So it using the default theme.

header.php
<?php  defined('C5_EXECUTE') or die("Access Denied."); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="<?php echo LANGUAGE?>" xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php  Loader::element('header_required'); ?>
<!-- Site Header Content //-->
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('main.css')?>" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('typography.css')?>" />
</head>
<body>
<div id="page">
   <div id="headerSpacer"></div>
   <div id="header">
      <?php  if ($c->isEditMode()) { ?>


and footer.php is
<?php  defined('C5_EXECUTE') or die("Access Denied."); ?>
   <div id="footer">
         <span class="powered-by"><a href="http://www.concrete5.org" title="<?php echo t('concrete5 - open source content management system for PHP and MySQL')?>"><?php echo t('concrete5 - open source CMS')?></a></span>
         © <?php echo date('Y')?> <a href="<?php echo DIR_REL?>/"><?php echo SITE?></a>.
           
         <?php echo t('All rights reserved.')?>
         <?php 
         $u = new User();
         if ($u->isRegistered()) { ?>
            <?php  
            if (Config::get("ENABLE_USER_PROFILES")) {
               $userName = '<a href="' . $this->url('/profile') . '">' . $u->getUserName() . '</a>';
            } else {
               $userName = $u->getUserName();
            }


hmm.. i dont see the footer required?
: oh it there just didnt copied the missing last part ...