Hi !
I'm a Phalcon newbie. I'm trying to change an simple application from Windows to Ubuntu. On Windows, it works fine. But when I put it on Ubuntu, it gives me a blank page without source or anything.
When I removed this line:
'compiledPath' => $config->application->cacheDir
In service.php file :
$view->registerEngines(array(
'.volt' => function ($view, $di) use ($config) {
$volt = new VoltEngine($view, $di);
$volt->setOptions(array(
'compiledPath' => $config->application->cacheDir,
'compiledSeparator' => '_'
));
return $volt;
}
));
It shows me the front page but another pages could not found. I tried to change Controller and View name in Case-sensitive as well but it doesn't work.
I spent a lot of hours finding the issue. Please, help me !
Thanks