It is as risky to believe everything, as it is to believe nothing. - Denis Diderot

Monthly Archive for November 2007

— 民生機でハイスピード撮影できる日

Posted: Nov 12, 2007, 6:21 pm | Author: cyberryo | Category: Dialy | Tags: ,

casiohispeed.jpg
CASIOがハイスピードカメラの試作機を発表してから数ヶ月。
発表時には1年以内に発売するとは言ってたけど、、、1年か~待ち遠しいなぁ~。
Read the rest of this entry »


— テクノラティへのブログ登録はブログでの投稿が必要

Posted: Nov 11, 2007, 5:32 pm | Author: cyberryo | Category: Dialy | Tags:

technorati.jpg
Technorati、ブロゴスフィアを効率よく使うんだなー。
そうなのかー。
Read the rest of this entry »


— [サーバー]Pleskでpearを使うとき弄るとこ

Posted: Nov 10, 2007, 7:25 pm | Author: cyberryo | Category: Dialy | Tags:

Pleskは非常に便利だけど、柔軟性に欠けすぎる。。。
pearを使いたいときにはコレをしなければならない。

home/httpd/vhosts/xxxxxx.jp/conf/vhost.conf

<directory /home/httpd/vhosts/xxxxxx.jp/httpdocs>
<ifModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_value include_path .:/usr/share/pear
php_admin_value open_basedir "/home/httpd/vhosts/xxxxxx.jp/httpdocs:/tmp:/usr/share/pear"
</ifModule>
</directory> 

apache再起動。

/etc/rc.d/ini.t/httpd restart

ちなみにCentOSのPlesk8.2でした。


— Dead By AprilのCD発売日はいつなの?

Posted: Nov 10, 2007, 5:12 pm | Author: cyberryo | Category: Dialy | Tags:

deadbyapril.jpg
ここ最近追跡を続けてるバンド、「DeadByApril」。
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’);

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