When installing I got a white screen of death, when I checked the error_log I saw this (edited for length):
Failed opening required 'libraries/profiler/profiler.inc' in profiles/nodestream/nodestream.profile on line 2

Sure enough the path to include profiler in nodestream.profile is incorrect. The include has to be changed from:

<?php
!function_exists('profiler_v2') ? require_once('libraries/profiler/profiler.inc') : FALSE;
profiler_v2('nodestream');
require_once('modules/libraries/libraries.module');

To:

<?php
!function_exists('profiler_v2') ? require_once('modules/profiler/profiler.inc') : FALSE;
profiler_v2('nodestream');
require_once('modules/libraries/libraries.module');

Simple fix, everything worked after that. The amended file is attached in .txt format.

CommentFileSizeAuthor
nodestream.profile in txt format174 bytesonelilfizzle
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Daniel Wentsch’s picture

Thanks for sharing, that helped.

Jerimee’s picture

Yay! Thanks onelilfizzle