Archive for the ‘Joomla’ Category

Secure your Joomla

Posted: November 23, 2011 in Joomla

Somebody menjeling sewaktu saya mengatakan apa yg perlu dan tidak (dont’s and do)….. Mungkin ILMU yg dia pelajari dah sampai tahap dewa tapi apa yg ditunjukkan dan jawapan yg diberi agak mengecewakan… (macam tahap cipan…) Ini sebahagian daripada security atau guide sekiranya anda menggunakan joomla utk goverment punya website. *** aku host web yg sikit [...]

mysql -u username -p –default-character-set=utf8 “database” < backup.sql

Build a Joomla Template from scratch

Posted: September 24, 2010 in Joomla

Build a Joomla Template from scratch watch this video and you will know how to build joomla template. template skeleton here.

Add databases and user :p I always forget how to do it… mysql -u root -p Enter password : mysql> mysql> create database akudb; Query OK, 1 row affected (0.11 sec) mysql> grant usage on *.* to akuuser@localhost identified by ‘akupassword’; Query OK, 1 row affected (0.11 sec) mysql> grant all privileges on akudb.* to [...]

Change meta name on joomla

Posted: April 24, 2010 in Joomla

How to change meta name on Joomla <meta name=”generator” content=”Joomla! 1.5 – Open Source Content Management” /> simple  just go to your Joomla library libraries/joomla/document/document.php search fot line 85 you will see this var $_generator = ‘Joomla! 1.5 – Open Source Content Management’; change this to what you want .. var $_generator = ‘This Is [...]

Joomla in lighttpd

Posted: March 25, 2009 in archlinux, Debian, Joomla, Slackware

Aku tukar configurations dari nginx kepada lighttpd.. ini semua pasal fungkur.org problem dengan spawn-cgi.. mod_rewrite for joomla using lighttpd. pico /etc/lighttpd/conf-enabled/10-rewrite.conf ——————————-cut here —————————— url.rewrite-once = ( “^/joomla/component/option,(.*)/$” => “/joomla/index.php?option=$1″) ——————————-cut here —————————— change joomla to your directory. or if you using server.document-root :  /var/ww/joomla use this config ——————————-cut here —————————— url.rewrite-once = ( “^/component/option,(.*)/$” [...]