I’m working in a php project and I needed to look for some framework. My boss told me about Phalcon and I started trying this framework. In this post I’ll talk about how to install and configure the framework and some adjusts that I did.
Considering that you have apache and php5 configured we need to download the cphalcon and install:
Add phalcon extension at php.ini from apache and client.
Install phalcon-devtools:
The phalcon-devtools installation will make a symbolic link to directory phalcon-devtools then you can’t remove this directory.
Now it’s possible to make a new project:
We can configure this app to run on apache
It’s very important to allow rewrite with the configuration AllowOverride All.
Now we just need to restart the apache:
Your application should work :)
This post is staying very long I’m stopping here and I’ll write another post about some configurations.
See ya!