I got this error when trying to install a Akelos SVN 1440
I change this in order to fix my application:
AkConfig::_readConfig changed
replace
$default_environments = array('testing','development','production');
to
$default_environments = array('testing','development','production','setup');
Otherwise you'll get a
"(User Error) Could not load inflector rules file: config/inflector.yml" message
In order to install
lib/constants.php
//replace this
//defined('AK_DEFAULT_DATABASE_PROFILE') ? null : define('AK_DEFAULT_DATABASE_PROFILE', 'AK_ENVIRONMENT');
//to this
defined('AK_DEFAULT_DATABASE_PROFILE') ? null : define('AK_DEFAULT_DATABASE_PROFILE', 'production');
Otherwise the AkDbAdapter::getInstance will recieved a 'setup' value then the
$static_var_name will be 'AkDbAdapter_getInstance_setup' which does not exist