2009年11月30日月曜日

Zend Framework on Ubuntu

UbuntuへのZend Frameworkの導入は簡単です。
必要なものを一気にインストール
# sudo apt-get install php5 zend-framework php-pear proftpd postgresql php5-pgsql

proftpdはFTPを使わなければ不要です。DBは好きなのを。続いて設定ファイル。

○/etc/php5/apache2/php.ini
include_path = ".:/usr/share/php:/usr/share/pear:/usr/share/php/libzend-framework-php/"

○プロジェクト直下に(ここでは/zf/)
$ cat zf/.htaccess
RewriteEngine on
RewriteBase /zf/
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php

○最後に稼動確認
$ cat index.php
<?php
require_once 'Zend/Version.php';
echo Zend_Version::VERSION;
?>

http://localhost/zf/
等をブラウザで開いて確認。

ついでに、Eclipse PDTのオールインワンパッケージ。環境に合わせてどうぞ。
http://downloads.zend.com/pdt/all-in-one/
$ cat zf/.htaccess

RewriteEngine on

RewriteBase /zf/

RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php

0 件のコメント:

コメントを投稿