hello
I am using drupal 7.19
I uploaded the Zircon Theme and I found the following problems:
1) blank page of deadht in home page
2) a series of warning messages:
Notice: Undefined index: nucleus in drupal_theme_initialize() (linea 98 di /home/lolacitt/public_html/new/includes/theme.inc).
Notice: Trying to get property of non-object in phptemplate_init() (linea 12 di /home/lolacitt/public_html/new/themes/engines/phptemplate/phptemplate.engine).
Notice: Trying to get property of non-object in drupal_alter() (linea 1035 di /home/lolacitt/public_html/new/includes/module.inc).
Notice: Undefined property: stdClass::$prefix in system_theme_settings() (linea 547 di /home/lolacitt/public_html/new/modules/system/system.admin.inc).
Notice: Undefined index: nucleus in system_theme_settings() (linea 575 di /home/lolacitt/public_html/new/modules/system/system.admin.inc).
Notice: Trying to get property of non-object in system_theme_settings() (linea 575 di /home/lolacitt/public_html/new/modules/system/system.admin.inc).

What can I do to use this theme?

Comments

Scorpio26’s picture

Hallo
I made a local installation with Drupal7.19 and Zircon 7.x-1.0-beta2.
When I install the theme I have the follow error:

Fatal error: Call to undefined function nucleus_get_predefined_param() in /home/mypc/www/drupal7/sites/all/themes/zircon/inc/preprocess_functions.inc on line 57

function zircon_preprocess_page(&$vars) {
  global $theme_key;
  $current_skin = theme_get_setting('skin');
  if (isset($_COOKIE['nucleus_skin'])) {
    $current_skin = $_COOKIE['nucleus_skin'];
  }

  $vars['page']['show_skins_menu'] = $show_skins_menu = theme_get_setting('show_skins_menu');
  if($show_skins_menu) {
    $skins = nucleus_get_predefined_param('skins', array("default" => t("Default Style"))); //<======HERE
    $current_skin = theme_get_setting('skin');
    if (isset($_COOKIE['nucleus_skin'])) {
      $current_skin = $_COOKIE['nucleus_skin'];
    }
.........
Scorpio26’s picture

Assigned: Unassigned » Scorpio26
Status: Active » Closed (fixed)

Solution:
Requirements Nucleus basetheme: http://drupal.org/project/nucleus
Thanks

D313373D’s picture

Issue summary: View changes

The same thing happened on openshift when I installed Zircon. I installed the required modules listed on the Zircon project page (Nucleus theme & some others) then cleared the cache using drush (drush cc all) & upon refresh the page looked as if it was normal.