Learning On Demand Learning anything from anywhere

Archive for August, 2007

date.timezone in php.ini for php5

08.29.2007 · Posted in PHP

My last post about glitch in time related function for php5 I use a function date_default_timezone_set For global setting as always use date.timezone in php.ini just change from : ;date.timezone =Asia/Jakarta uncomment it first by remove semicolon mark into this : date.timezone =Asia/Jakarta save php.ini files and restart apache try view using phpinfo() you’re done ...

date_default_timezone_set for php5 date() fixation

08.25.2007 · Posted in PHP

Recent upgrade to php5 in appserv make me confuse when my friend ask me about this code : print date(‘d-M-Y H:i:s’); hour isn’t accurate after googling I found about date_default_timezone_set for full list of supported zone time see this link http://www.php.net/manual/en/timezones.php edit  the code into date_default_timezone_set( "Asia/Jakarta" ); // date.timezone = "timezone_here" print date(‘d-M-Y H:i:s’); ...

Options in FreeBSD ports

08.14.2007 · Posted in Unix

some useful options : make config make showconfig make rmconfig make rmconfig will remove old options saved. If not work try to clean first Also useful switch in portupgrade : portupgrade -aFrR (will download all required file without install) -i, need your decision. ...

Migrating email accomplished (postfix+mysql+dovecot)

08.01.2007 · Posted in Unix

Fiuh, finally migrating email task is clear. Almost 3500++ email account from vmailmgr based system moved to postfix with mysql backend and dovecot support. thanks to Bendiken script that convert things magically Generally the steps are : 1. Rsync email to new server 2. Change to dovecot style with migration script, make it in looping. ...