Renamed IndexController to HomeController to avoid errors with Apache Multiviews. Related to issue #74

Updated ajax url request path in index.phtml
This commit is contained in:
Roy Lindauer 2013-09-19 23:33:46 -07:00
commit 0282e68119
3 changed files with 4 additions and 4 deletions

View file

@ -38,7 +38,7 @@ require_once(APPLICATION_PATH . 'vendor/autoload.php');
// Load configuration if present:
$conf = array();
$conf['b8']['app']['namespace'] = 'PHPCI';
$conf['b8']['app']['default_controller'] = 'Index';
$conf['b8']['app']['default_controller'] = 'Home';
$conf['b8']['view']['path'] = dirname(__FILE__) . '/PHPCI/View/';
$config = new b8\Config($conf);