Installation error, 'Could not find db.php...'

The 'SYS_SYS' variable was taking 'workflow' as his value, when it has to take $workspace instead of it. In /engine/controllers/installer.php.
This commit is contained in:
jennylee
2013-01-29 12:56:41 -04:00
parent 5926d3da8a
commit d350b8b6ac

View File

@@ -771,7 +771,7 @@ class Installer extends Controller
define( 'HASH_INSTALLATION', $h );
define( 'SYSTEM_HASH', $sh );
define( 'PATH_DB', $pathShared . 'sites' . PATH_SEP );
define( 'SYS_SYS', 'workflow' );
define( 'SYS_SYS', $workspace );
require_once ("propel/Propel.php");