Theme problem locking out log in

Permalink
Keep getting this message and cannot log in to page.

"File /home/c5host/msm_versions/082813/concrete/themes/whitespace/default.php not found. All themes need default.php and view.php files in them. Consult concrete5 documentation on how to create these files."


Any ideas

mattadlard
 
enlil replied on at Permalink Reply
enlil
in your theme you need to have a default.php, its the default page type like any other page type such as left_sidebar.php, or blog_entry.php.

here is default.php from Greek Yogurt:

<?php  
defined('C5_EXECUTE') or die("Access Denied.");
$this->inc('elements/header.php'); ?>
   <div class="clear"></div>
   <div id="main-content-container" class="grid_16">
      <div id="main-content-inner">
         <?php  
         $a = new Area('Main');
         $a->display($c);
         ?>
      </div>
   </div>
   <div id="right-sidebar-container" class="grid_8">
      <div id="right-sidebar-inner">
         <?php
mattadlard replied on at Permalink Reply
mattadlard
thanks