<?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>Uncategorized &#8211; CJSelvamani</title>
	<atom:link href="https://cjselvamani.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>https://cjselvamani.com</link>
	<description>Saved by Gracious Faith Alone</description>
	<lastBuildDate>Thu, 19 May 2016 14:42:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Load denied by X-Frame-Options: does not permit framing.</title>
		<link>https://cjselvamani.com/load-denied-x-frame-options-not-permit-framing/</link>
					<comments>https://cjselvamani.com/load-denied-x-frame-options-not-permit-framing/#respond</comments>
		
		<dc:creator><![CDATA[cjselvamani]]></dc:creator>
		<pubDate>Thu, 19 May 2016 14:42:35 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://www.cjselvamani.com/?p=189</guid>

					<description><![CDATA[If the iframe denied to load the content and shown the error &#8220;Load denied by [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>If the iframe denied to load the content and shown the error &#8220;<strong>Load denied by X-Frame-Options: does not permit framing.</strong>&#8221; please add the following line to the .htaccess</p>
<pre class="lang:default decode:true ">Header always append X-Frame-Options SAMEORIGIN</pre>
<p>This should be working fine for the websites under the Apache web server.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cjselvamani.com/load-denied-x-frame-options-not-permit-framing/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Update Magento Order Status by direct SQL</title>
		<link>https://cjselvamani.com/update-magento-order-status-direct-sql/</link>
					<comments>https://cjselvamani.com/update-magento-order-status-direct-sql/#respond</comments>
		
		<dc:creator><![CDATA[cjselvamani]]></dc:creator>
		<pubDate>Wed, 17 Dec 2014 14:58:27 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://www.cjselvamani.com/?p=130</guid>

					<description><![CDATA[Sometimes we need to change the Order status on the Sales order grid on the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Sometimes we need to change the Order status on the Sales order grid on the Magento to &#8216;Complete&#8217; but we are unable to do that. But this can be achieved by running sql query directly on the PHPMyadmin.</p>
<pre class="lang:default decode:true">UPDATE `sales_flat_order_grid` SET `status` = 'complete' WHERE `sales_flat_order_grid`.`entity_id` = ENTITY_ID;

UPDATE `sales_flat_order` SET `status` = 'complete', `state` = 'complete' WHERE `sales_flat_order`.`entity_id` = ENTITY_ID;</pre>
<p>In the above sql queries <strong>ENTITY_ID </strong>will be replaced by an Order ID which status to be changed to &#8216;Complete&#8217;. We can get the Order ID from the admin panel. To get this value navigate to &#8216;Sales -&gt; Orders&#8217; in the admin and click the Order row you want to change status. Once you are in the Order details page please check the URL and see the number placed between &#8216;order_id&#8217; and &#8216;key&#8217; and this is the Order ID</p>
<p>For example the following image &#8216;799&#8217; is the &#8216;ENTITY_ID&#8217; will be used in the SQL query.</p>
<p><a href="http://www.cjselvamani.com/wp-content/uploads/2014/12/order_id.jpg"><img decoding="async" class="size-full wp-image-132 alignnone" src="http://www.cjselvamani.com/wp-content/uploads/2014/12/order_id.jpg" alt="Magento Order ID" width="754" height="30" /></a></p>
<p>&nbsp;</p>
<p>Cheers!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cjselvamani.com/update-magento-order-status-direct-sql/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
