Install Symfony 2 on Debian
- Download the Standard version and put the Symfony folder to the root.
- Open /Symfony/web/config.php with browser to check the configuration. If needed, remove the ip address check from the begining of the file. I had to install things and do some changes:
apt-get update
apt-get install php-pear php5-dev apache2-threaded-dev build-essential libicu-dev
pecl install apc
pecl install intl
php.ini:
short_open_tag = Off
date.timezone = Europe/Budapest (for me)
extension = apc.so
extension = intl.so
Save then restart apache.
version with libicu may differ, because now it's libicu48, I suppose that libicu-dev will be enough
ReplyDeleteThank you!
ReplyDelete