<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LAMP How To - Open Source At Work &#187; Think Software</title>
	<atom:link href="http://www.azhowto.com/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.azhowto.com</link>
	<description>Only Passion Matters</description>
	<lastBuildDate>Wed, 08 Feb 2012 03:07:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>quick magento tips</title>
		<link>http://www.azhowto.com/2011/12/16/quick-magento-tips/</link>
		<comments>http://www.azhowto.com/2011/12/16/quick-magento-tips/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 01:36:39 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Software]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=827</guid>
		<description><![CDATA[
// get user ip
Mage::helper('core/http')->getRemoteAddr(true));

// get user session id
Mage::getModel("core/session")->getEncryptedSessionId());

// update database config on the fly
Mage::getModel('core/config')->saveConfig('payment/worldpaydirect/merchant_id', '1111111');
Mage::getConfig()->reinit();
Mage::app()->reinitStores();

]]></description>
		<wfw:commentRss>http://www.azhowto.com/2011/12/16/quick-magento-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress caching and mobile theme plugins</title>
		<link>http://www.azhowto.com/2011/12/14/wordpress-caching-and-mobile-theme-plugins/</link>
		<comments>http://www.azhowto.com/2011/12/14/wordpress-caching-and-mobile-theme-plugins/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 00:14:47 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Software]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=819</guid>
		<description><![CDATA[when using caching plugin such as w3tc in wordpress, it will try to cache the mobile version as well and there could be a possibility that mobile users might see the desktop version and vice versa. So the idea is to disable the caching plugin for mobile agents:
if using w3tc, under page cache -> rejected [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2011/12/14/wordpress-caching-and-mobile-theme-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips in Magento</title>
		<link>http://www.azhowto.com/2011/11/10/debugging-tips-in-magento/</link>
		<comments>http://www.azhowto.com/2011/11/10/debugging-tips-in-magento/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 01:45:34 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=801</guid>
		<description><![CDATA[Debugging Tips:

1. In your .htaccess, add
SetEnv MAGE_IS_DEVELOPER_MODE
2. Under system -> configuration -> advanced -> developer,
change current configuration scope dropdown on top left to main website, then debug -> turn template hints and block name hints to on.
3. We can log errors easily. 
Mage::log($var);
4. To display popup errors,
Mage::throwException(&#8220;Your debug message here&#8221;);
5. To see a list of [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2011/11/10/debugging-tips-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento: Removing SSL After Installation</title>
		<link>http://www.azhowto.com/2011/11/07/magento-removing-ssl-after-installation/</link>
		<comments>http://www.azhowto.com/2011/11/07/magento-removing-ssl-after-installation/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 01:12:29 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=799</guid>
		<description><![CDATA[use magento_db;
UPDATE core_config_data SET value = 0 WHERE path=&#8217;web/secure/use_in_frontend&#8217;;
UPDATE core_config_data SET value = 0 WHERE path=&#8217;web/secure/use_in_adminhtml&#8217;; 
might need to clear the cache and do hard refresh after that.
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2011/11/07/magento-removing-ssl-after-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing sensitive data from git</title>
		<link>http://www.azhowto.com/2011/09/22/removing-sensitive-data-from-git/</link>
		<comments>http://www.azhowto.com/2011/09/22/removing-sensitive-data-from-git/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 01:58:38 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=781</guid>
		<description><![CDATA[suppose one accidentally commited a file with sensitive data ages ago, others could actually retrieve the passwd easily since git keeps a history of the changes. So the idea is to remove the file from git altogether with file changed history, then recommit the affected file (without sensitive data this time) again. 
do a git [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2011/09/22/removing-sensitive-data-from-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing screen resolution of Ubuntu in virtualbox</title>
		<link>http://www.azhowto.com/2010/12/19/changing-screen-resolution-of-ubuntu-in-virtualbox/</link>
		<comments>http://www.azhowto.com/2010/12/19/changing-screen-resolution-of-ubuntu-in-virtualbox/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 22:03:07 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=726</guid>
		<description><![CDATA[ubuntu allows screen resolutions bigger than 800 x 600. To get this to work under virtualbox, some tricks are needed.

# if not already done, install the desktop.
sudo apt-get install ubuntu-desktop

# once done, need to configure screen resolution. By default ubuntu only allows 800 x 600 or 640 x 480.
# get linux source first.
sudo apt-get install [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/12/19/changing-screen-resolution-of-ubuntu-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>virtualbox: changing system time in vm</title>
		<link>http://www.azhowto.com/2010/11/10/virtualbox-changing-system-time-in-vm/</link>
		<comments>http://www.azhowto.com/2010/11/10/virtualbox-changing-system-time-in-vm/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 01:08:27 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=715</guid>
		<description><![CDATA[sometimes, changing system time is neccessary to help development in the vm. To do that in the virtualbox guest, we have to run some script in the host,
VBoxManage setextradata [vmname] &#8220;VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled&#8221; &#8220;1&#8243;
then reboot host
once booted, change system time in vm and it will work.
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/11/10/virtualbox-changing-system-time-in-vm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Ads Error</title>
		<link>http://www.azhowto.com/2010/09/25/google-ads-error/</link>
		<comments>http://www.azhowto.com/2010/09/25/google-ads-error/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 02:03:20 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Other Interest]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=694</guid>
		<description><![CDATA[sometimes you get script errors in your browser when you run google ads. It is most likely that you have flash in the ads.
Based on normal broadband speed,  there is a very high chance that the full page is rendered even before the flash ad started downloading (as it gets redirected to a 3rd [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/09/25/google-ads-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic GIT tutorial: centralised and decentralised model</title>
		<link>http://www.azhowto.com/2010/09/01/basicgit-tutorial-centralised-and-decentralised-model/</link>
		<comments>http://www.azhowto.com/2010/09/01/basicgit-tutorial-centralised-and-decentralised-model/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 01:49:34 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think Software]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=681</guid>
		<description><![CDATA[Git is fast becoming the most popular versioning control system in the market today. It is open sourced and offers a number of significant advantages over svn. SVN will probably still be around for a while because a lot of people and software are still dependent on it or don&#8217;t see a need for change. [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/09/01/basicgit-tutorial-centralised-and-decentralised-model/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Preserving HTML in XML</title>
		<link>http://www.azhowto.com/2010/05/06/preserving-html-in-xml/</link>
		<comments>http://www.azhowto.com/2010/05/06/preserving-html-in-xml/#comments</comments>
		<pubDate>Thu, 06 May 2010 22:41:49 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=669</guid>
		<description><![CDATA[Characters like &#8220;&#60;&#8221; and &#8220;&#38;&#8221; are illegal in XML elements. &#8220;&#60;&#8221; will generate an error because the parser interprets it as the start of a new element. &#8220;&#38;&#8221; will generate an error because the parser interprets it as the start of an character entity. Some text, like JavaScript code, contains a lot of &#8220;&#60;&#8221; or [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/05/06/preserving-html-in-xml/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eclipse Proxy Fix</title>
		<link>http://www.azhowto.com/2010/05/06/eclipse-proxy-fix/</link>
		<comments>http://www.azhowto.com/2010/05/06/eclipse-proxy-fix/#comments</comments>
		<pubDate>Thu, 06 May 2010 03:14:24 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Software]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=667</guid>
		<description><![CDATA[If you are behind a proxy server, you may get annoying proxy popups after installing eclipse. The trick is to manually setup the proxies in 
windows->preferences->general->networking
This works for galileo, the version that I am using.
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/05/06/eclipse-proxy-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advance SVN post-commit hook script for System Administrators</title>
		<link>http://www.azhowto.com/2010/04/16/advance-svn-post-commit-hook-script-for-system-administrators/</link>
		<comments>http://www.azhowto.com/2010/04/16/advance-svn-post-commit-hook-script-for-system-administrators/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 02:11:39 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=663</guid>
		<description><![CDATA[Everyone knows how cool svn post-commit feature is. Instead of using the basic post-commit script provided by svn, we can do alot more with a bit of server side scripting. Here, I like to share a simple script that I wrote to automate the process of updating different server system files using svn post-commit. It [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/04/16/advance-svn-post-commit-hook-script-for-system-administrators/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SVN over HTTP</title>
		<link>http://www.azhowto.com/2010/03/29/svn-over-http/</link>
		<comments>http://www.azhowto.com/2010/03/29/svn-over-http/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 05:46:31 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=657</guid>
		<description><![CDATA[Objective
I want to be able to browse the svn dir from a website like http://zeus.dev/svn.php and at the same time, be able to checkout from the repository via http://zeus.dev/svn/projectname
How

First of all, install mod_dav_svn
Then in the apache config, I am using vhost for example
&#60;VirtualHost *:80&#62;
  DocumentRoot /home/data/zeus.dev/apps/
  ServerName zeus.dev
  # this is for [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/03/29/svn-over-http/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick tips for setting up Eclipse and Monkey</title>
		<link>http://www.azhowto.com/2010/03/29/quick-tips-for-setting-up-eclipse-and-monkey/</link>
		<comments>http://www.azhowto.com/2010/03/29/quick-tips-for-setting-up-eclipse-and-monkey/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 02:50:23 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=654</guid>
		<description><![CDATA[
eclipse-pdtis a php integrated eclipse IDE &#8211; good for rapid web development.
download eclipse-pdt from above.
setup subclipse (for svn) if you intend to use svn within eclipse. In eclipse-&#62;help-&#62;software updates-&#62;available software-&#62;add site, enter URL: http://subclipse.tigris.org/update_1.6.x
Another good software to install is beyond cvs. In eclipse-&#62;help-&#62;software updates-&#62;available software-&#62;add site, enter URL: http://beyondcvs.sourceforge.net/update/0.8.x/


install subeclipse and javaHL adapter.
setup eclipse monkey [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/03/29/quick-tips-for-setting-up-eclipse-and-monkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Highly available load Balancer + web server in centos</title>
		<link>http://www.azhowto.com/2010/02/10/highly-available-load-balancer-web-server-in-centos/</link>
		<comments>http://www.azhowto.com/2010/02/10/highly-available-load-balancer-web-server-in-centos/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 10:38:57 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=629</guid>
		<description><![CDATA[This tutorial is about creating a highly available HTTP load balancer using HAProxy. The setup can be slightly complicated but you will appreciate the result &#8211; you will get a load-balanced + highly available web service in your network. Basic linux skill is assumed.
Scenario:
Imagine we have 2 physical machines. In each machine, I have 2 [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/02/10/highly-available-load-balancer-web-server-in-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing KVM in Centos, Redhat or Fedora</title>
		<link>http://www.azhowto.com/2009/12/23/installing-kvm-in-centos-redhat-or-fedora/</link>
		<comments>http://www.azhowto.com/2009/12/23/installing-kvm-in-centos-redhat-or-fedora/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 12:37:27 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Networking]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[kvm]]></category>
		<category><![CDATA[virtualisation]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=600</guid>
		<description><![CDATA[KVM is available in RHEL 5.4. I finally managed to find the time to play around it over the weekend. I don&#8217;t think it is as matured as xen but having said that, I do agree with the approach &#8211; Kernel virtualisation. Redhat is promoting kvm very hard and you can see it from their [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/12/23/installing-kvm-in-centos-redhat-or-fedora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restarting vmware web access</title>
		<link>http://www.azhowto.com/2009/09/03/restarting-vmware-web-access/</link>
		<comments>http://www.azhowto.com/2009/09/03/restarting-vmware-web-access/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 01:22:15 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Software]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=546</guid>
		<description><![CDATA[sometimes the vmware web access just halted for some reason. A good way to overcome that is to simply restart the vmware web server, ie

/etc/init.d/vmware-mgmt restart

]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/09/03/restarting-vmware-web-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>extending vmware harddisk</title>
		<link>http://www.azhowto.com/2009/08/31/extending-vmware-harddisk/</link>
		<comments>http://www.azhowto.com/2009/08/31/extending-vmware-harddisk/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 01:26:59 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=541</guid>
		<description><![CDATA[1. shutdown vmware either from browser or console.
2. checkout the vmware-vdiskmanager command. The example there tells everything.
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/08/31/extending-vmware-harddisk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>mounting samba share and finding samba ip in linux</title>
		<link>http://www.azhowto.com/2009/08/27/mounting-samba-share-and-finding-samba-ip-in-linux/</link>
		<comments>http://www.azhowto.com/2009/08/27/mounting-samba-share-and-finding-samba-ip-in-linux/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 04:44:40 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=534</guid>
		<description><![CDATA[following the samba/nfs post &#8211; http://www.azhowto.com/2009/08/07/mounting-file-systems-and-autofs-tips/ earlier, what if we do not know the ip address of the samba server?
if you just have the samba server name say ri-fnp, smbclient can find it easily for you, just do

smbclient //ri-fnp/backup -U user -W MYDOMAIN

If you want to mount it, you will need to know the ip [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/08/27/mounting-samba-share-and-finding-samba-ip-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting idml coordinates to pixels</title>
		<link>http://www.azhowto.com/2009/08/04/converting-idml-coordinates-to-pixels/</link>
		<comments>http://www.azhowto.com/2009/08/04/converting-idml-coordinates-to-pixels/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 23:47:48 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[idml]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=480</guid>
		<description><![CDATA[As of CS4, indesign has the ability to export to idml. idml is indesign&#8217;s xml format and is very useful if you want to use it in other applications. The only complicated part is the way it calculates the coordinates. If you are interested, you can look at the official idml doc + the cookbook [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/08/04/converting-idml-coordinates-to-pixels/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
