Skip to main content

Posts

Showing posts from August, 2010

Ubuntu - Restore toolbar

If you've messing up the toolbar and want to restore to the default setting you can do like this : bash> rm -rf ~/.gnonf/apps/panel bash> killall gnome-panel the toolbar will restore to the default value and you can configure it back :)

Ubuntu - Enable mod_rewrite

Enabling mod_rewrite for cakephp 1.3 in 3 easy steps : 1) Enable the module bash>sudo a2enmode rewrite 2) Make a soft link bash>sudo ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/ 3) Restart the apache server bash> sudo /etc/init.d/apache2 restart p/s:Check in your phpinfo() if mod_rewrite is enable :)