<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Offshore Web Developer Pakistan</title>
	<link>http://www.adeelsarfaraz.com</link>
	<description></description>
	<lastBuildDate>Wed, 01 Feb 2012 09:26:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />

	<item>
		<title>How to remove the &#8220;Fatal error: SOAP-ERROR: Parsing Schema: unexpected  in sequence&#8221; error?</title>
		<description><![CDATA[ <p>If you use the eBay API in any way on your website related to your products or orders then you may have come across an issue which happened last week probably around Jan 26 2012. If you call any eBay API method you will encounter the following error message:</p> <p> Fatal error: SOAP-ERROR: Parsing [...]]]></description>
		<link>http://www.adeelsarfaraz.com/how-to-remove-the-fatal-error-soap-error-parsing-schema-unexpected-in-sequence-error/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-remove-the-fatal-error-soap-error-parsing-schema-unexpected-in-sequence-error</link>
			</item>
	<item>
		<title>How to 301 Redirect static URLs using htaccess</title>
		<description><![CDATA[ <p>If your website has static URLs i.e. do not contain any query string parameters and you need to redirect your old website URLs to your new website URLs then you don&#8217;t have to fear anymore. You can write simple redirect statements in your .htaccess file and you don&#8217;t have to be regular expression guru.</p> [...]]]></description>
		<link>http://www.adeelsarfaraz.com/how-to-301-redirect-static-urls-using-htaccess/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-301-redirect-static-urls-using-htaccess</link>
			</item>
	<item>
		<title>How to 301 redirect non-www URLs to www URLs using htaccess</title>
		<description><![CDATA[ <p>If your website can be accessed by two different URLs then your website could be penalized for duplicate content by the search engines which would be costly in terms of your rankings. For e.g. if your website can be accessed by http://www.exampleurl.com and http://exampleurl.com then Google may deem it as duplicate content.</p> <p>Google provides [...]]]></description>
		<link>http://www.adeelsarfaraz.com/how-to-301-redirect-non-www-urls-to-www-urls-using-htaccess/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-301-redirect-non-www-urls-to-www-urls-using-htaccess</link>
			</item>
	<item>
		<title>How to 301 redirect SSL URLs to non-SSL URLs using .htaccess</title>
		<description><![CDATA[ <p>If you would like to rewrite your SSL URLs to non-SSL URLs then please add the following code to your .htaccess file.</p> <p> RewriteCond %{SERVER_PORT} ^443$ RewriteRule ^(.*)$ http://www.adeelsarfaraz.com/$1 [R=301,L] </p> <p>The above code should be used in the following conditions:</p> <p>1. Your website used to run on https:// and now it does not [...]]]></description>
		<link>http://www.adeelsarfaraz.com/how-to-301-redirect-ssl-urls-to-non-ssl-urls-using-htaccess/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-301-redirect-ssl-urls-to-non-ssl-urls-using-htaccess</link>
			</item>
	<item>
		<title>An alternative way to check mySQL version in the Magento check script</title>
		<description><![CDATA[ <p>Magento, like most other open source softwares, provides a list of requirements which need to be fulfilled before it can be installed on your machine. If you are installing Magento for the first time then I would recommend that you read the server requirments. on the other hand there may be some who would [...]]]></description>
		<link>http://www.adeelsarfaraz.com/an-alternative-way-to-check-mysql-version-in-the-magento-check-script/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=an-alternative-way-to-check-mysql-version-in-the-magento-check-script</link>
			</item>
	<item>
		<title>How to parse large sized XML files using PHP XML Parser</title>
		<description><![CDATA[ <p>I was recently provided a Google Base XML file by a client to load on one of his websites. The size of the XML file was over 20MB.  The format of the XML file was as follows:</p> <p>&#60;?xml version=&#8221;1.0&#8243;?&#62; &#60;rss version=&#8221;2.0&#8243; xmlns:g=&#8221;http://base.google.com/ns/1.0&#8243; xmlns:c=&#8221;http://base.google.com/cns/1.0&#8243;&#62; &#60;channel&#62; &#60;title&#62;Company Name&#60;/title&#62; &#60;description&#62;Company Name Description&#60;/description&#62; &#60;link&#62;www.companyname.com&#60;/link&#62; &#60;item&#62; &#60;g:id&#62;TEST&#60;/g:id&#62; &#60;title&#62;Test Product [...]]]></description>
		<link>http://www.adeelsarfaraz.com/how-to-parse-large-sized-xml-files-using-php-xml-parser/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-parse-large-sized-xml-files-using-php-xml-parser</link>
			</item>
	<item>
		<title>How Google can penalize your website for duplicate content</title>
		<description><![CDATA[ <p>My company&#8217;s SEO team lead came to me with an interesting problem and I thought I share it with everyone.</p> <p>It so happens that his team were doing SEO related work on an e-commerce website and they were seeing a lot of the website pages indexed in Google which had the text</p> <p>The page [...]]]></description>
		<link>http://www.adeelsarfaraz.com/how-google-can-penalize-your-website-for-duplicate-content/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-google-can-penalize-your-website-for-duplicate-content</link>
			</item>
	<item>
		<title>How to implement mySQL FULLTEXT</title>
		<description><![CDATA[ <p>mySQL has full text indexing and searching support from version 5 onwards however there are some limitations. If you need to implement full text indexing then please follow point given below:</p> <p>1. mySQL allows full text indexing on MyISAM tables and not any other table type. If you try to create a full text [...]]]></description>
		<link>http://www.adeelsarfaraz.com/how-to-implement-mysql-fulltext/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-implement-mysql-fulltext</link>
			</item>
	<item>
		<title>How to use JavaScript to detect mobile and hand held devices</title>
		<description><![CDATA[ <p>If you are maintaining separate web pages on your website for visitors viewing your website on their mobile phones or hand held devies then you can use the following JavaScript code to check the visitor&#8217;s user agent and direct them to the relevant web pages.</p> <p> &#60;script type=&#8221;text/javascript&#8221;&#62;</p> <p>var mobile = function(){ return { [...]]]></description>
		<link>http://www.adeelsarfaraz.com/how-to-use-javascript-to-detect-mobile-and-hand-held-devices/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-use-javascript-to-detect-mobile-and-hand-held-devices</link>
			</item>
	<item>
		<title>WWF era wrestler theme songs</title>
		<description><![CDATA[ <p>The Rock&#8217;s theme song</p> <p></p> <p>Stone Cold&#8217;s theme song </p> <p></p> <p>Undertaker&#8217;s theme song</p> <p></p> <p>Shawn Michael&#8217;s theme song</p> <p></p> <p>Bret the Hitman&#8217;s theme song</p> <p></p> <p>Last but not least I never understood why they changed the name to WWE. The new WWE sucks big time and I don&#8217;t even watch it.</p> <p>I loved [...]]]></description>
		<link>http://www.adeelsarfaraz.com/wwf-era-wrestler-theme-songs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wwf-era-wrestler-theme-songs</link>
			</item>
</channel>
</rss>

