Do everything with so much love in your heart that you would never want to do it any other way. - Brahma Kumaris

Archive for the 'Cakephp' Tag

— [cakephp]1.2で管理者用アクションの設定をする

Posted: Oct 29, 2008, 2:10 am | Author: cyberryo | Category: Dialy | Tags:


cakephp1.2で管理者用のページを作る。1.2での通称「adminルーティング」に関する情報です。
Read the rest of this entry »


— [Diary]2008/10/25

Posted: Oct 25, 2008, 7:55 pm | Author: cyberryo | Category: Dialy | Tags: , ,


ブログは将来になって読み返すと、そのまんまライフログになってくれるから、たまにでもいいから更新しておかなきゃー。
Read the rest of this entry »


— [cakephp]コアのXMLライブラリでRSSをパース

Posted: Sep 26, 2008, 2:36 pm | Author: cyberryo | Category: Dialy | Tags: ,


cakePHP1.2のXMLライブラリでRSS(xml)をパースして、楽ちんにviewへ渡す方法を考えてみました。

Read the rest of this entry »


— CakePHP1.2でZendFrameworkを使う

Posted: Sep 23, 2008, 11:55 am | Author: cyberryo | Category: Dialy | Tags: ,


CakePHP内の持ってない機能をZendFrameworkで補うことに。最近のZFはとても高機能な上に、つまんで使えるのが素敵。

Read the rest of this entry »


— [cakephp]謎のJavaScriptエラーで、本物のエラーが見れない

Posted: Nov 9, 2007, 9:41 pm | Author: cyberryo | Category: Dialy | Tags:

Notice: Undefined variable: javascript in hoge\cake\app\views\elements\header.thtml on line 10
Fatal error: Call to a member function link() on a non-object in hoge\cake\app\views\elements\header.thtml on line 10

こんなエラーで長らく無意味な苦労してました。

原因は、必要なJavascriptヘルパーの宣言をしていないから。

こんな時は、下記みたいにコントローラー全部に宣言してしまいましょう。
cake/app/app_controller.php

var $helpers = array(‘html’,'javascript’,'Pagination’);

こんなことできるなら、早くやってればよかったー。