Install eAccelerator for PHP
1. Environment : PHP 5.2.14 : /usr/local/webserver/php PHP-FPM 0.5.14 : /usr/local/webserver/php/etc/php-fpm.conf eAccelerator 0.9.6.1 : /data/soft_misc/eaccelerator-0.9.6.1.tar.bz2 2. Install eAccele… Continue reading
Mini Login Form in Magento Home Page
1. Find and modify cms_index_index tag within /layout/cms.xml : [codesyntax lang="xml" lines="no" container="pre" tab_width="4"] <cms_index_index translate="label"> <label>CMS Home Page</label> <refer… Continue reading
Use SMTP with Telnet
Test local SMTP : [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ telnet localhost 25 $ helo localhost $ mail from:xx@abc.com $ rcpt to:xqpmjh@gmail.com $ data $ subject:and i love… Continue reading
Subversion Post Commit Hook
1. Create post-commit hook [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ cd /data/svndata/hooks $ cp post-commit.tmpl post-commit $ chown kim:kim post-commit $ chmod a+x post-com… Continue reading
Daily Schedule
From monday to monday : 7:30 morning reading 8:00 breakfast 9:00 planning, news, bloging 10:25 relax 10:30 working 12:00 lunch, nap 13:30 working 16:00 tea time 18:00 dinner, late news 18:30 working 2… Continue reading
Git Essence
CVCS (Centralized Version Control Systems) like SVN, CVS etc. DVCS (Distributed Version Control System) like Git, Bazaar etc. Git Status: modified, staged, committed Continue reading
Install Git on Windows
1. Install msysgit http://code.google.com/p/msysgit/ 2. Configurations [codesyntax lang="bash"] $ git config --global user.name "kim" $ git config --global user.email xqpmjh@gmail.com [/codesyntax] 3.… Continue reading
Being a Controller
I like it, yes, being a controller. I like this kind of feeling, controlling everything. Share everything I can share. Learn everything I can learn. Handle everything I can handle. Spend 110% time tha… Continue reading
Redmine on Ubuntu Server
1. Installation and Configurations (1) Install apache and mysql (2) Install redmine [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ su $ apt-get install redmine redmine-mysql $ sud… Continue reading
Compile Mysql Extension for PHP
1. PHP Source : /home/kim/php-5.3.3 Path : /usr/local/php 2. Compile Mysql Extension [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ cd /home/kim/php-5.3.3/ext/mysql/ $ /usr/local/… Continue reading