Clean Drupal instalation.
White screen after theme enable.
On appearance page i saw message:
Warning: require_once(.../sites/all/themes/mbase/helper.inc) [function.require-once]: failed to open stream: No such file or directory in require_once() (line 8 of .../sites/all/themes/mbase/includes/bootstrap.inc).

Comments

VasyOK created an issue. See original summary.

quardz’s picture

Assigned: Unassigned » quardz
Status: Active » Patch (to be ported)

Some if the environments wont have "__DIR__" constant defined, This "__DIR__" available from PHP 5.3.0. I will fix this in next commit, For now please add this code at line number 6 in "includes/bootstrap.inc"

// Ensure that __DIR__ constant is defined.
if (!defined('__DIR__')) {
  define('__DIR__', dirname(__FILE__));
}
vasyok’s picture

OK, thanx!
I understand php 5.3 required