介紹
一個可以使用的網路伺服器,假設使用的是Apache,PHP的版本是5.2.8或更高,大部分的使用者不需要設定就可以使用。

資料庫部分使用的是MySQL做範例,要知道些SQL指令與使用方式, 為了使用MYSQL,在PHP中需要開啟 pdo_mysql http://tw2.php.net/pdo_mysql 。基本上,要有物件導向的程式語言的知識,以及了解MVC架構與特徵,可以去看 MVC_CAKEPHP

Edit

安裝(跳過)

目前最新測試版本為3.0,穩定版本為2.4.4
GitHub: https://github.com/cakephp/cakephp/tags and download the latest release of 2.0

git下載方式
git clone git://github.com/cakephp/cakephp.git

第一層資料夾結構
/path_to_document_root
/app
/lib
/plugins
/vendors
.htaccess
index.php
README

暫存檔案夾權限 Tmp directory permissions
app/tmp 設定可以寫入的權限(775)…

這行指令 可以看到主機user名稱,去修改那個使用者的權限

linux或 mac

$ chown -R www-data app/tmp

 

 

reference link:  http://book.cakephp.org/2.0/en/tutorials-and-examples/blog/blog.html  

http://book.cakephp.org/2.0/en/cakephp-overview/understanding-model-view-controller.html