Development

#4414 (propel/Propel.php not found in r11662.)

You must first sign up to be able to contribute.

Ticket #4414 (closed defect: fixed)

Opened 5 years ago

Last modified 5 years ago

propel/Propel.php not found in r11662.

Reported by: Benjamin.Meynell Assigned to: fabien
Priority: minor Milestone: 1.2.0
Component: sfPropelPlugin Version: 1.2.0 DEV
Keywords: Cc:
Qualification: Unreviewed

Description

Error

Warning: require_once(propel/Propel.php) [function.require-once]: failed to open stream: No such file or directory in /usr/local/lib/sf/1.2.0-DEV/lib/plugins/sfPropelPlugin/lib/addon/sfPropelAutoload.php on line 22

Line in Question

set_include_path(get_include_path().PATH_SEPARATOR.realpath(dirname(__FILE__).'/../../vendor/').'/');

The Fix

Add 'lib/' before vendor.

set_include_path(get_include_path().PATH_SEPARATOR.realpath(dirname(__FILE__).'/../../lib/vendor/').'/');

Change History

09/30/08 07:08:11 changed by Kris.Wallsmith

  • status changed from new to closed.
  • resolution set to fixed.

(In [11855]) [1.2] Fixed broken path (closes #4414)