UTF-8 TeraTerm Pro with TTSSH2 is enhanced version TeraTerm from TeraTerm 2.3 original version. TeraTerm is open source free software terminal emulator supporting SSH2 and UTF-8 protocol. hxxp://iij.dl.sourceforge.jp/ttssh2/26625/teraterm_utf8-4.53.exe [TeraTerm] 2007.8.8 (Ver 4.53) – added `&h’ parameter to log file name that can convert the host name. – added a default log directory setting. added LogDefaultPath […]
Multiple domains login in roundcube webmail
Roundcube is very good solution for webmail. I use squirrelmail for almost 4 years and I like it too. In production server I install squirrelmail and roundcube as well for give other user different experience 🙂 using mail and mail2 as prefix and multiple domains need special attention in roundcube. After search in their forum […]
VirtualBox 1.5 work well with FreeBSD 6.2
Recent VirtualBox (version 1.5) work well with FreeBSD 6.2 Windows XP SP2 as host Smooth installation 2 GB HD 2 Ethernet card ( dhcp work well and internal too) Great release, will try this Vbox version for PCBSD 1.4RC 🙂
date.timezone in php.ini for php5
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
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’); […]