Hey all,
I recently moved all of my content to a new server (Linux) and I am having the blank page problem with themes. The site works with bluemarine theme, but when I try to use my own theme (we are using the taxonomy_theme module), and enable it, I get a blank page on /?q=admin and /?q=admin/themes pages
This is the error message (short version):
warning: main(page-default.tpl.php): failed to open stream
This is the error message (long version):
* warning: main(page-default.tpl.php): failed to open stream: No such file or directory in /home/theworld/public_html/themes/General/page.tpl.php on line 31.
* warning: main(): Failed opening 'page-default.tpl.php' for inclusion (include_path='') in /home/theworld/public_html/themes/General/page.tpl.php on line 31.
The page-default is there, we are using the template.php page too:
function phptemplate_image_gallery($galleries, $images) {
return _phptemplate_callback('image_gallery', array('galleries' => $galleries, 'images' => $images));
}
function theme_name_xml_icon($url)
{
if ($image = theme('image', 'misc/feed.png', t('XML feed'), t('XML feed'))) {
return '<br><br><br><div class="feed-icon"><a href="/'. check_url($url) .'" rel="nofollow">'. $image. '</a><br><br><br></div>';
}
}
<?php
function _phptemplate_variables($hook, $vars = array()) {