symfonyのインストールに関係すること諸々。
symfonyのダウンロード。
symfonyのサイトからtarファイルを落としてくる。
curl -O http://www.symfony-project.org/get/symfony-1.4.14.tgz
バージョンの確認
jackie:sfproject hchuno$ php lib/vendor/symfony/data/bin/symfony -V
symfony version 1.4.14 (/Users/hchuno/sfproject/lib/vendor/symfony/lib)
jackie:sfproject hchuno$ php -v
PHP 5.3.6 with Suhosin-Patch (cli) (built: Jun 25 2011 10:41:21)
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies
jackie:sfproject hchuno$ httpd -v
Server version: Apache/2.2.19 (Unix)
Server built: Jun 25 2011 10:05:21
バーチャルホストの設定
※参考にしたサイト。
# Be sure to only have this line once in your configuration
NameVirtualHost 127.0.0.1:8080# This is the configuration for your project
Listen 127.0.0.1:8080
DocumentRoot "/Users/hchuno/sfproject/web"
DirectoryIndex index.php
AllowOverride All
Allow from All
Alias /sf /Users/hchuno/lib/vendor/symfony/data/web/sf
AllowOverride All
Allow from All