Downloads
Phalcon is a C extension so you need to download a binary for your platform or compile it from source code.Compilation
On platform Linux you can easily compile and install the extension from source code.Requirements
We need some packages previously installed- PHP 5.x development resources
- GCC compiler
#Ubuntu
sudo apt-get install php5-dev php5-mysql gcc
#Suse
yast2 -i php5-pear php5-devel php5-mysql gcc
Compilation
To create the extension from C source follow the next steps:git clone git://github.com/phalcon/cphalcon.git
cd cphalcon/build
sudo ./install
Add the extension to your php.ini:
extension=phalcon.so
Finally restart the webserver
Debian
There is a repo graciously offered by FortRabbit hereArch Linux
There is a PKGBUILD for ArchLinux, available hereFreeBSD
A port is available for FreeBSD. Just only need these simple line commands to install it:# pkg_add -r phalcon
or
# cd /usr/ports/www/phalcon && make install clean
Dependencies
Although Phalcon does not binary link to other extensions it does use some of them to offer functionality. The extensions used are:- mbstring
- mcrypt
- openssl
- PDO
- PDO/Mysql
- PDO/Postgresql
- PDO/Sqlite
- PDO/Oracle
- Mongo
Need help?
Have a look at our support page for ways to get support. We will do our best to help you.Windows
To use phalcon on Windows you can download a DLL library. Edit your php.ini and append at the end:extension=php_phalcon.dll
Restart your webserver to load the extension.
We highly recommend you to use the latest version of PHP so as
to take advantage of the full feature set of Phalcon.
| x86 | |
|
Phalcon 1.1.0 - Windows x86 for PHP 5.3.9 (VC9) Updated: May 17 2013 11:24:08 COT |
download |
|
Phalcon 1.1.0 - Windows x86 for PHP 5.3.9 NTS (VC9) Updated: May 17 2013 11:24:08 COT |
download |
|
Phalcon 1.1.0 - Windows x86 for PHP 5.4.0 (VC9) Updated: May 17 2013 11:24:08 COT |
download |
|
Phalcon 1.1.0 - Windows x86 for PHP 5.4.0 NTS (VC9) Updated: May 17 2013 11:24:08 COT |
download |
| x64 | |
|
Phalcon 1.1.0 - Windows x64 for PHP 5.3.9 (VC9) Updated: May 17 2013 11:24:08 COT |
download |
|
Phalcon 1.1.0 - Windows x64 for PHP 5.3.9 NTS (VC9) Updated: May 17 2013 11:24:08 COT |
download |
|
Phalcon 1.1.0 - Windows x64 for PHP 5.4.0 (VC9) Updated: May 17 2013 11:24:08 COT |
download |
|
Phalcon 1.1.0 - Windows x64 for PHP 5.4.0 NTS (VC9) Updated: May 17 2013 11:24:08 COT |
download |
| Source Code | github |
| Older versions | |
| x86 | |
|
Phalcon 1.0.1 - Windows x86 for PHP 5.3.9 (VC9) Updated: April 12 2013 16:31:29 COT |
download |
|
Phalcon 1.0.1 - Windows x86 for PHP 5.3.9 NTS (VC9) Updated: April 12 2013 16:31:29 COT |
download |
|
Phalcon 1.0.1 - Windows x86 for PHP 5.4.0 (VC9) Updated: April 12 2013 16:31:29 COT |
download |
|
Phalcon 1.0.1 - Windows x86 for PHP 5.4.0 NTS (VC9) Updated: April 12 2013 16:31:29 COT |
download |
| x64 | |
|
Phalcon 1.0.1 - Windows x64 for PHP 5.4.0 (VC9) Updated: April 11 2013 16:31:09 COT |
download |
|
Phalcon 1.0.1 - Windows x64 for PHP 5.4.0 NTS (VC9) Updated: April 11 2013 16:31:09 COT |
download |
| Source Code | github |
Developer Tools
This tools provide you useful scripts to generate code helping to develop faster and easy applications that use with Phalcon framework.
Installing via Composer
Install composer in a common location or in your project:
curl -s http://getcomposer.org/installer | php
Create the composer.json file as follows:
{
"require": {
"phalcon/devtools": "dev-master"
}
}
Run the composer installer:
php composer.phar install
Create a symbolink link to the phalcon.php script:
ln -s ~/devtools/phalcon.php /usr/bin/phalcon
chmod ugo+x /usr/bin/phalcon