symfonyで開発を行うための環境構築チュートリアル

"Getting Started with symfony" is part of the official symfony documentation.

This tutorial is the best way to get started with symfony. It explains everything you need to know about symfony installation. In a matter of minutes, you will be ready to use symfony and start your next project.

symfonyに、また新しいドキュメントが用意されました。
それが「Getting Started with symfony」です。

symfonyの特徴にもふれつつ、サーバー(環境)の設定から、ファイル構造や定番のコマンドについて簡単に説明されています。
symfonyを使い始めるために必要な最初のステップ部分について書かれているので、これからsymfonyを学んでみようという方や、symfonyがどういった特徴なのかを調べようとしている方にはちょうど良いのではないでしょうか。

その中でSkyepのsymfonyのチャットルームでも触れられていたsymfonyらしいなぁというところは、サーバーの設定内容(phpのバージョンや設定から、APCなどの設定の有無など)を確認するスクリプトが用意されているところです。

Then, download the symfony configuration checker script at the following URL:

http://sf-to.org/1.2/check.php

Save the script somewhere under your current web root directory.

Launch the configuration checker script from the command line:

$ php check_configuration.php

If there is a problem with your PHP current configuration, the output of the command will give you hints on what to fix and how to fix it.

You should also execute the checker from a browser and fix the issues it might discover. That's because PHP can have a distinct php.ini configuration file for these two environments, with different settings.

開発環境と本番環境が異なっていたりするとアプリケーションが動かなかったり、動作しない原因がアプリ側なのかサーバーの設定なのか切り分けに時間がかかったりしますが、こういった確認用スクリプトを実行すれば原因の切り分けを容易にできますしね。