<?php error_reporting(E_ALL); try { /** * Read the configuration */ $config = include __DIR__ . "/../mvc/app/config/config.php"; /** * Read auto-loader */ include __DIR__ . "/../mvc/app/config/loader.php"; /** * Read services */ include __DIR__ . "/../mvc/app/config/services.php"; /** * Handle the request */ $application = new \Phalcon\Mvc\Application($di); echo $application->handle()->getContent(); } catch (\Exception $e) { echo $e->getMessage(); }