First thoughts when see these url : http://www.mydomain.com/about.pl this site use perl http://www.mydomain.com/about.cfm this site use cfm http://www.mydomain.com/about.htm or http://www.mydomain.com/about.html then you might think about ordinary htm/html file is it true?
Category: PHP
ZFS and FreeBSD current
Very interesting to see progress of ZFS in FreeBSD, comitted in FreeBSD 7 ( will release in 2007). This excellent job done by Pawel Jakub Dawidek with collaboration with opensolaris for suitable patch . Many feature that ZFS offer that make me hard to blink till see last pages of presentation Pawel also give quick […]
xcache, another php cache with stable operation orientation
During my last search on eaccelerator progress ( in time of writing 0.9.5) i found new link to another php cache : xcache since it’s made by author of lighttpd i’m eager to try it out in my freebsd server. 1. updating freebsd ports 2. install from ports # cd /usr/ports/www/xcache && make install 3. […]
PHP Ternary Operator
PHP ternary operator isn’t beautiful for reading reason It’s also make confuse, but for the sake of simple it’s OK 🙂 Syntax : ( expr1 ) ? ( expr2 ) : (expr3) If expr1 return true, then it evaluates to ( expr2 )If expr1 return false, then it evaluates to ( expr3 ) it’s similar […]
Recover Your Joomla Administrator Password
Joomla is very popular CMS, it’s easy to setup and require only working php and mysql installation. A problem may arise when your administrator password lost or forgot. Can I recover my admin password or create a new one ? It’s common question in "Setting your own Content Management System" workshop. Use php md5() function […]