— 民生機でハイスピード撮影できる日
Posted: Nov 12, 2007, 6:21 pm | Author: cyberryo | Category: Dialy | Tags: Camera, Movie
CASIOがハイスピードカメラの試作機を発表してから数ヶ月。
発表時には1年以内に発売するとは言ってたけど、、、1年か~待ち遠しいなぁ~。
Read the rest of this entry »

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

Technorati、ブロゴスフィアを効率よく使うんだなー。
そうなのかー。
Read the rest of this entry »
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でした。

ここ最近追跡を続けてるバンド、「DeadByApril」。
Read the rest of this entry »
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’);
こんなことできるなら、早くやってればよかったー。