Hi Guys,
I've downloaded the php-site example from https://github.com/phalcon/php-site
and have the following config:
<?php
$config = new Phalcon\Config(array(
'database' => array(
'adapter' => 'mysql',
'host' => 'localhost',
'username' => 'root',
'password' => '',
'name' => 'php_site'
),
'phalcon' => array(
'controllersDir' => '/../app/controllers/',
'modelsDir' => '/../app/models/',
'libraryDir' => '/../app/library/',
'viewsDir' => '/../app/views/',
'baseUri' => '/'
)
));
i've set up the db correctly, but all requests are just aborted after loading the config. Does anybody have a clue as to why?