<?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>Decrypt Web</title>
	<atom:link href="http://blog.decryptweb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.decryptweb.com</link>
	<description>Open Source Web Solutions</description>
	<lastBuildDate>Sat, 19 May 2012 12:37:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Optgroup in Magento</title>
		<link>http://blog.decryptweb.com/optgroup-in-magento/</link>
		<comments>http://blog.decryptweb.com/optgroup-in-magento/#comments</comments>
		<pubDate>Sat, 19 May 2012 12:35:34 +0000</pubDate>
		<dc:creator>DWRoot</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Catalog]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[Product]]></category>

		<guid isPermaLink="false">http://blog.decryptweb.com/?p=380</guid>
		<description><![CDATA[For a module I was working on in one of my project, I needed to display a select box, with optgroup, Magento has inbuilt function for this. Kindly go through this post Select Box in Magento of mine for understanding how to generate select box before reading forward. For option group you need to pass [...]]]></description>
		<wfw:commentRss>http://blog.decryptweb.com/optgroup-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Event and Observer in Magento</title>
		<link>http://blog.decryptweb.com/event-observer-magento/</link>
		<comments>http://blog.decryptweb.com/event-observer-magento/#comments</comments>
		<pubDate>Sat, 21 Apr 2012 11:22:38 +0000</pubDate>
		<dc:creator>DWRoot</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[Observer]]></category>

		<guid isPermaLink="false">http://blog.decryptweb.com/?p=372</guid>
		<description><![CDATA[There is an Event-Observer methodology used in Magento, Magento has been programmed to raise events in crucial areas of the flow. We can use these events for our requirement. I am describing here a way to use it. An example would be the event &#8216;checkout_onepage_controller_success_action&#8217; (this has been use by me at many instances) which [...]]]></description>
		<wfw:commentRss>http://blog.decryptweb.com/event-observer-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adminhtml Frontname in Magento</title>
		<link>http://blog.decryptweb.com/adminhtml-frontname-magento/</link>
		<comments>http://blog.decryptweb.com/adminhtml-frontname-magento/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 12:36:05 +0000</pubDate>
		<dc:creator>DWRoot</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[Model]]></category>

		<guid isPermaLink="false">http://blog.decryptweb.com/?p=368</guid>
		<description><![CDATA[I am writing here a code snipet for fetching the name (alias) used to access admin end, which is set to &#8216;admin&#8217; by default Below code for creating an admin URL]]></description>
		<wfw:commentRss>http://blog.decryptweb.com/adminhtml-frontname-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File Upload in Magento</title>
		<link>http://blog.decryptweb.com/file-upload-magento/</link>
		<comments>http://blog.decryptweb.com/file-upload-magento/#comments</comments>
		<pubDate>Sat, 17 Mar 2012 10:53:19 +0000</pubDate>
		<dc:creator>DWRoot</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Files]]></category>

		<guid isPermaLink="false">http://blog.decryptweb.com/?p=365</guid>
		<description><![CDATA[As you already might have noticed, there are many modules in Magento which has file uploading facility in admin end. I had to make a custom form for file uploading in Magento in frontend, I am explaining here the way to upload a file. Magento has a class (Varien_File_Uploader) defined for this purpose. The class [...]]]></description>
		<wfw:commentRss>http://blog.decryptweb.com/file-upload-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Category and Product SOAP API in Magento</title>
		<link>http://blog.decryptweb.com/category-product-soap-api-magento/</link>
		<comments>http://blog.decryptweb.com/category-product-soap-api-magento/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 08:00:33 +0000</pubDate>
		<dc:creator>DWRoot</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Category]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[Product]]></category>
		<category><![CDATA[SOAP]]></category>

		<guid isPermaLink="false">http://blog.decryptweb.com/?p=360</guid>
		<description><![CDATA[In one of my post I explained the basics of SOAP API, please refer Magento SOAP API before proceeding further I am listing here the methods to create Categories and Products using SOAP API 1) Category a) Category Creation b) Category deletion 2) Product a) Product Creation b) Product Updation b) Product Deletion 3) Assigning [...]]]></description>
		<wfw:commentRss>http://blog.decryptweb.com/category-product-soap-api-magento/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Payment Methods in Magento</title>
		<link>http://blog.decryptweb.com/payment-methods-magento/</link>
		<comments>http://blog.decryptweb.com/payment-methods-magento/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 12:50:02 +0000</pubDate>
		<dc:creator>DWRoot</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[Modules]]></category>
		<category><![CDATA[payment]]></category>

		<guid isPermaLink="false">http://blog.decryptweb.com/?p=356</guid>
		<description><![CDATA[These days I am working on Payment Module. I am writing here the code which is useful and related to Payment module 1) To fetch the existing Payment Methods There is a payment module helper file existing in default Magento, which is really very helpful. Path &#8211; app/code/core/Mage/Payment/Helper/Data.php 2) To fetch only enable Payment Methods [...]]]></description>
		<wfw:commentRss>http://blog.decryptweb.com/payment-methods-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Table Name in Magento</title>
		<link>http://blog.decryptweb.com/table-name-magento/</link>
		<comments>http://blog.decryptweb.com/table-name-magento/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 07:27:44 +0000</pubDate>
		<dc:creator>DWRoot</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Model]]></category>

		<guid isPermaLink="false">http://blog.decryptweb.com/?p=353</guid>
		<description><![CDATA[I am writing here a small but useful snippet of code, for getting the table name of any module (whose table name are defined in config file). This is very useful when using joins in query. Suppose my module is &#8216;vendor&#8217;.]]></description>
		<wfw:commentRss>http://blog.decryptweb.com/table-name-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Encode Decode image using PHP</title>
		<link>http://blog.decryptweb.com/encode-decode-image-php/</link>
		<comments>http://blog.decryptweb.com/encode-decode-image-php/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 11:21:26 +0000</pubDate>
		<dc:creator>DWRoot</dc:creator>
				<category><![CDATA[PHP/MySQL]]></category>
		<category><![CDATA[Files]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.decryptweb.com/?p=350</guid>
		<description><![CDATA[Hello, I am describing here the way to 1) Encode image to generate a string 2) Decode image from a given encoded string 1) Here you need to specifiy the path of your image in variable &#8216;$image_path&#8217; 2) Here I am using the string produced from the executing the code seen above, it can be [...]]]></description>
		<wfw:commentRss>http://blog.decryptweb.com/encode-decode-image-php/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Website ID from Store Group ID in Magento</title>
		<link>http://blog.decryptweb.com/website-from-store-group-magento/</link>
		<comments>http://blog.decryptweb.com/website-from-store-group-magento/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 10:34:17 +0000</pubDate>
		<dc:creator>DWRoot</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Group]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[Store]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://blog.decryptweb.com/?p=346</guid>
		<description><![CDATA[Hello All, I am posting here code for fetching website information from Store Group Id. Also useful code showing relations between Stores, Groups and Websites.]]></description>
		<wfw:commentRss>http://blog.decryptweb.com/website-from-store-group-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax in Magento</title>
		<link>http://blog.decryptweb.com/ajax-in-magento/</link>
		<comments>http://blog.decryptweb.com/ajax-in-magento/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 12:59:00 +0000</pubDate>
		<dc:creator>DWRoot</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Get]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Post]]></category>

		<guid isPermaLink="false">http://blog.decryptweb.com/?p=331</guid>
		<description><![CDATA[There are some instances when we are required to use Ajax features in Magento. Prototype javascript library used in Magento has inbuilt functionality for Ajax. I am describing here the basic method to use ajax. I have used version 1.6.0.0 of Magento. I am using the existing Contacts module for explanation, you can make any [...]]]></description>
		<wfw:commentRss>http://blog.decryptweb.com/ajax-in-magento/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

