<?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>magelancers.com</title>
	<atom:link href="http://www.magelancers.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.magelancers.com</link>
	<description>Magento, PHP, MySQL, AJAX, Zend, cPanel or OpenSource...</description>
	<lastBuildDate>Sat, 19 Nov 2011 08:11:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>How to fix Fooman speedster in Magento 1.3.2.4: Fatal error: Uncaught exception &#8216;JSMin_UnterminatedStringException&#8217;</title>
		<link>http://www.magelancers.com/how-to-fix-fooman-speedster-in-magento-1-3-2-4-fatal-error-uncaught-exception-jsmin_unterminatedstringexception/</link>
		<comments>http://www.magelancers.com/how-to-fix-fooman-speedster-in-magento-1-3-2-4-fatal-error-uncaught-exception-jsmin_unterminatedstringexception/#comments</comments>
		<pubDate>Sat, 06 Nov 2010 15:49:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.magelancers.com/?p=202</guid>
		<description><![CDATA[After installing Fooman Speedster on Magento version 1.3.2.4, got several javascript errors. Both admin menu and front-end menu stopped to work. I got the following error: How have I fixed it? First, I opened the following url for which I was getting this error, copied from Firefox&#8217;s Firebug extension. Obviously you should see the same]]></description>
			<content:encoded><![CDATA[<p>After installing Fooman Speedster on Magento version 1.3.2.4, got several javascript errors. Both admin menu and front-end menu stopped to work.</p>
<p>I got the following error:</p>
<pre class="brush: php; title: ; notranslate">
Fatal error: Uncaught exception 'JSMin_UnterminatedStringException' with message 'Unterminated String: '\'\\*\\+/=\\?\\^_`\\{\\|}~-]+)*@[a-z0-9-]+(\\.[a-z0-9-]+)*\\.([a-z]{2,})/i.test(v)'
</pre>
<p>How have I fixed it?<br />
First, I opened the following url for which I was getting this error, copied from Firefox&#8217;s Firebug extension.</p>
<pre class="brush: php; title: ; notranslate">

http://127.0.0.1/magento/skin/m/1264961510/js/prototype/prototype.js,/js/prototype/deprecation.js,/js/prototype/validation.js,/js/scriptaculous/builder.js,/js/scriptaculous/effects.js,/js/scriptaculous/dragdrop.js,/js/scriptaculous/controls.js,/js/scriptaculous/slider.js,/js/varien/js.js,/js/varien/form.js,/js/varien/menu.js,/js/mage/translate.js,/js/mage/cookies.js,/js/sb/src/js/lib/yui-utilities.js
</pre>
<p>Obviously you should see the same error till now.</p>
<p>Now, I removed one js file and requested the above URL, how? say you would want to remove validation.js, then URL should be </p>
<pre class="brush: php; title: ; notranslate">

http://127.0.0.1/magento/skin/m/1264961510/js/prototype/prototype.js,/js/prototype/deprecation.js,/js/scriptaculous/builder.js,/js/scriptaculous/effects.js,/js/scriptaculous/dragdrop.js,/js/scriptaculous/controls.js,/js/scriptaculous/slider.js,/js/varien/js.js,/js/varien/form.js,/js/varien/menu.js,/js/mage/translate.js,/js/mage/cookies.js,/js/sb/src/js/lib/yui-utilities.js
</pre>
<p>Notice I have removed <strong>/js/prototype/validation.js,</strong></p>
<p>Ok, now there is no more error. So, the error is somewhere in the validation.js. In Magento 1.3.2.4, open the /js/prototype/validation.js and need to replace Line no 431</p>
<pre class="brush: php; title: ; notranslate">return Validation.get('IsEmpty').test(v) || /^[a-z0-9,!\#\$%&amp;'\*\+/=\?\^_`\{\|}~-]+(\.[a-z0-9,!#\$%&amp;'\*\+/=\?\^_`\{\|}~-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*\.([a-z]{2,})/i.test(v)</pre>
<p>with </p>
<pre class="brush: php; title: ; notranslate"> return Validation.get('IsEmpty').test(v) || /^([a-z0-9,!\#\$%&amp;'\*\+\/=\?\^_`\{\|\}~-]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z0-9,!\#\$%&amp;'\*\+\/=\?\^_`\{\|\}~-]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*@([a-z0-9-]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z0-9-]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*\.(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]){2,})$/i.test(v)</pre>
<p>Should work fine now.</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magelancers.com/how-to-fix-fooman-speedster-in-magento-1-3-2-4-fatal-error-uncaught-exception-jsmin_unterminatedstringexception/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to edit default email templates in Magento?</title>
		<link>http://www.magelancers.com/how-to-edit-default-email-templates-in-magento/</link>
		<comments>http://www.magelancers.com/how-to-edit-default-email-templates-in-magento/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 05:02:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.magelancers.com/?p=199</guid>
		<description><![CDATA[To change default email template, we need to edit html files in app\locale\en_US\template\email If you are using other languages than en_US then open corresponding folder to make changes. You also need to edit few more files, in order to get rid of these type of things: so, make changes of files in app\design\frontend\your_theme\default\template\email otherwise you]]></description>
			<content:encoded><![CDATA[<p>To change default email template, we need to edit html files in app\locale\<strong>en_US</strong>\template\email</p>
<p>If you are using other languages than en_US then open corresponding folder to make changes.</p>
<p>You also need to edit few more files, in order to get rid of these type of things:</p>
<pre class="brush: xml; title: ; notranslate">{{layout handle=&quot;sales_email_order_items&quot; order=$order}} </pre>
<p>so, make changes of files in app\design\frontend\your_theme\default\template\email otherwise you would see default email template.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magelancers.com/how-to-edit-default-email-templates-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to capture all fields and values of a form at once in php?</title>
		<link>http://www.magelancers.com/how-to-capture-all-fields-and-values-of-a-form-at-once-in-php/</link>
		<comments>http://www.magelancers.com/how-to-capture-all-fields-and-values-of-a-form-at-once-in-php/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 08:01:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP/MySQL]]></category>

		<guid isPermaLink="false">http://www.magelancers.com/?p=193</guid>
		<description><![CDATA[Sometime we may have many fields in a form. We can get all field names and corresponding values at once in php nicely and field names which can be used as variables later. For eg, you would like to save into database then create a table and make all database filed names same as form&#8217;s]]></description>
			<content:encoded><![CDATA[<p>Sometime we may have many fields in a form. We can get all field names and corresponding values at once in php nicely and  field names which can be used as variables later. </p>
<p>For eg, you would like to save into database then create a table and make all  database filed names same as form&#8217;s field names.</p>
<pre class="brush: sql; title: ; notranslate">
CREATE TABLE `student` (
`id` INT NOT NULL AUTO_INCREMENT ,
`first_name` INT NOT NULL ,
`last_name` INT NOT NULL ,
PRIMARY KEY ( `id` )
)
</pre>
<p>I have a form as given below:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;form method=&quot;post&quot; action=&quot;&lt;?php echo $_SERVER['PHP_SELF']; ?&gt;&quot;&gt;
First Name : &lt;input type=&quot;text&quot; name=&quot;first_name&quot;&gt;&lt;br /&gt;
Last Name : &lt;input type=&quot;text&quot; name=&quot;last_name&quot;&gt;&lt;br /&gt;
&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Submit&quot; &gt;
&lt;/form&gt;
</pre>
<p>While you submit the form, capture all variables, values and create SQL query to save into database:</p>
<pre class="brush: php; title: ; notranslate">
if(!empty($_POST)){
	foreach($_POST as $variable =&gt; $key){
		${$variable} = trim($key);
	}
        $sql = &quot;INSERT INTO `student` (`first_name` ,`last_name`)
       VALUES ( '&quot;.$first_name.&quot;', '&quot;.$last_name.&quot;');&quot;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.magelancers.com/how-to-capture-all-fields-and-values-of-a-form-at-once-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to define dynamic variable in php?</title>
		<link>http://www.magelancers.com/how-to-define-dynamic-variable-in-php/</link>
		<comments>http://www.magelancers.com/how-to-define-dynamic-variable-in-php/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 07:47:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP/MySQL]]></category>

		<guid isPermaLink="false">http://www.magelancers.com/?p=189</guid>
		<description><![CDATA[If you need to define variable dynamically in php then this can be done easily. Say, your variable name will be &#8216;dynamic_variable_name&#8217; Generally we define php variable normally as $normal_variable; but in this case we would like to create dynamically. Then we have to write something like following way: To explain it better I am]]></description>
			<content:encoded><![CDATA[<p>If you need to define variable dynamically in php then this can be done easily.<br />
Say, your variable name will be &#8216;dynamic_variable_name&#8217;</p>
<p>Generally we define php variable normally as $normal_variable; but in this case we would like to create dynamically.<br />
Then we have to write something like following way:</p>
<pre class="brush: php; title: ; notranslate">
$normal_variable = 'dynamic_variable_name';
${$normal_variable} = 'New dynamic variable created';
echo $dynamic_variable_name;
// prints New dynamic variable created.
</pre>
<p>To explain it better I am giving an instance which will be very helpful to develop PHP sites and reduce some hard work.</p>
<p>I have a form as given below:</p>
<pre class="brush: php; title: ; notranslate">
&lt;form method=&quot;post&quot; action=&quot;&lt;?php echo $_SERVER['PHP_SELF']; ?&gt;&quot;&gt;
First Name : &lt;input type=&quot;text&quot; name=&quot;first_name&quot;&gt;&lt;br /&gt;
Last Name : &lt;input type=&quot;text&quot; name=&quot;last_name&quot;&gt;&lt;br /&gt;
&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Submit&quot; &gt;
&lt;/form&gt;
</pre>
<p>While you submit the form, capture all variables and values:</p>
<pre class="brush: php; title: ; notranslate">
if(!empty($_POST)){
	foreach($_POST as $variable =&gt; $key){
		${$variable} = trim($key);
	}
        echo $first_name . '  ' . $last_name;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.magelancers.com/how-to-define-dynamic-variable-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to import / recover magento categories and products from the old store?</title>
		<link>http://www.magelancers.com/how-to-import-recover-magento-categories-and-products-from-the-old-store/</link>
		<comments>http://www.magelancers.com/how-to-import-recover-magento-categories-and-products-from-the-old-store/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 11:44:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.magelancers.com/?p=180</guid>
		<description><![CDATA[Well, I was really looking for a good way to import categories in magento, we know we can export and then import products gracefully from our old store but not categories. So, what you need to do is, you need phpMyAdmin to export and import tables or similar tool, though I would recommend phpMyAdmin. Step]]></description>
			<content:encoded><![CDATA[<p>Well, I was really looking for a good way to import categories in magento, we know we can export and then import products gracefully from our old store but not categories. So, what you need to do is, you need phpMyAdmin to export and import tables or similar tool, though I would recommend phpMyAdmin.</p>
<ol>
<li><strong>Step 1:</strong> Select the old database from where you would like to recover categories and products and click on export, please check the attached image file, you need to <strong>Disable Foreign Key checks</strong> and <strong>Add DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT</strong>.
<p><a href="http://www.magelancers.com/wp-content/uploads/2010/09/phpmyadmin.jpg"><img src="http://www.magelancers.com/wp-content/uploads/2010/09/phpmyadmin-300x102.jpg" alt="" title="phpmyadmin" width="300" height="102" class="alignnone size-medium wp-image-183" /></a></p>
</li>
<li><strong>Step 2:</strong> Now, select all tables prefix with <strong>catalog</strong> and <strong>eav</strong></li>
<li><strong>Step 3:</strong> finally <strong>Save as file</strong></li>
<li><strong>Step 4:</strong> Install a fresh magento version, I have tested with version 1.4.0.1, so I would recommend install the same version as the old one. Say, old magento store version was 1.4.0.1 then install a fresh copy of the same version.</li>
<li><strong>Step 5:</strong> Now, select the fresh database in phpMyAdmin which you have just installed and import the same old SQL file which you had exported in Step 3</li>
</ol>
<p>If you don&#8217;t see any errors then look at new magento store, hope you would see all the products and categories. </p>
<p>You might not see new categories at the frontend, login to admin panel and enable Use Flat Catalog Category / Product.
<p>
<a href="http://www.magelancers.com/wp-content/uploads/2010/09/import-categories.jpg"><img src="http://www.magelancers.com/wp-content/uploads/2010/09/import-categories-300x99.jpg" alt="" title="import-categories" width="300" height="99" class="alignnone size-medium wp-image-185" /></a></p>
<p>Don&#8217;t forget to use the old media directory and <strong>ReIndex Data</strong> (System -> Index Management) <img src='http://www.magelancers.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This method will be helpful if you would like to recover categories and products from the old corrupted database. This sometime happens we can not fix  the old database even if you use the old database and install fresh magento.</p>
<p>Let me know whether you have successfully recover the old database or not.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magelancers.com/how-to-import-recover-magento-categories-and-products-from-the-old-store/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How to fix Mage registry key &#8220;XXXXXX&#8221; already exists?</title>
		<link>http://www.magelancers.com/how-to-fix-mage-registry-key-already-exists/</link>
		<comments>http://www.magelancers.com/how-to-fix-mage-registry-key-already-exists/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 05:00:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.magelancers.com/?p=173</guid>
		<description><![CDATA[I got the following error message in a magento store after upgrading from 1.4.0.1 to 1.4.1.1. Though I moved products and categories from old site. And this lead me to see the error in the report directory: To fix this quickly, first, I simply commented a line in app/Mage.php file, line No.192 Above trick will]]></description>
			<content:encoded><![CDATA[<p>I got the following error message in a magento store after upgrading from 1.4.0.1 to 1.4.1.1. Though I moved products and categories from old site. And this lead me to see the error in the report directory:</p>
<pre class="brush: plain; title: ; notranslate">Mage registry key &quot;_resource_singleton/customer/customer_address&quot; already exists</pre>
<p>To fix this quickly, first, I simply commented a line in app/Mage.php file, line No.192</p>
<pre class="brush: php; title: ; notranslate">
public static function register($key, $value, $graceful = false)
    {
        if (isset(self::$_registry[$key])) {
			if ($graceful) {
                return;
            }
            //self::throwException('Mage registry key &quot;'.$key.'&quot; already exists');
        }
        self::$_registry[$key] = $value;
    }
</pre>
<p>Above trick will resolve the issue quickly. Though I would not recommend. So, I restored the file as it was before. Then I looked at eav_entity_type table. And noticed in entity_model field value is <strong>customer/customer_address</strong> where entity_type_code is <strong>customer_address</strong>. This value should be <strong>customer/address</strong>, changed it, wow, started to work perfectly again!</p>
<p>So, if you see the similar error and don&#8217;t know how to fix in database then commenting the mentioned line will definitely help.</p>
<p>Let me how you have fixed <img src='http://www.magelancers.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.magelancers.com/how-to-fix-mage-registry-key-already-exists/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Google AdWords showing wrong report</title>
		<link>http://www.magelancers.com/google-adwords-showing-wrong-report/</link>
		<comments>http://www.magelancers.com/google-adwords-showing-wrong-report/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 19:23:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.magelancers.com/?p=154</guid>
		<description><![CDATA[I was checking my adwords account and surprisingly discovered that there was even not a single impression but 1 click. Yes, no impressions but click Check the following screenshot: I tried to see after few days but still no change: Already mailed to Google but now reply yet. Update: Got reply from Google I understand]]></description>
			<content:encoded><![CDATA[<p>I was checking my adwords account and surprisingly discovered that there was even not a single impression but 1 click. Yes, no impressions but click</p>
<p>Check the following screenshot:<br />
<a href="http://www.magelancers.com/wp-content/uploads/2010/08/adwords1.jpg"><img src="http://www.magelancers.com/wp-content/uploads/2010/08/adwords1-300x150.jpg" alt="adwords-no-impression-but click" title="adwords-no-impression-but click" width="300" height="150" class="alignnone size-medium wp-image-160" /></a></p>
<p>I tried to see after few days but still no change:<br />
<a href="http://www.magelancers.com/wp-content/uploads/2010/08/adwords2.jpg"><img src="http://www.magelancers.com/wp-content/uploads/2010/08/adwords2-300x152.jpg" alt="" title="adwords2" width="300" height="152" class="alignnone size-medium wp-image-162" /></a></p>
<p>Already mailed to Google but now reply yet.</p>
<p><strong>Update:</strong><br />
Got reply from Google </p>
<blockquote><p>I understand that you are seeing a click but no corresponding impression<br />
to have caused this. This can happen sometimes, but please be assure you<br />
that an impression happened to<br />
cause the click. The biggest reason for this is the way the Search Query<br />
Report (or in this case, the &#8216;See Search Terms) works.</p>
<p>Note that with this report, we don&#8217;t report every impression that comes in<br />
on<br />
expansions. The number of impressions on these expansions either has to be<br />
&#8216;significant&#8217;, or have a click. With that, we don&#8217;t always start recording<br />
impressions until the click happens &#8211; and even then we don&#8217;t always record<br />
it. That report is less about data (impressions, CTR, etc) and more about<br />
showing you expansions your keywords are showing on.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.magelancers.com/google-adwords-showing-wrong-report/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to check PayPal account reputation?</title>
		<link>http://www.magelancers.com/how-to-check-paypal-account-reputation/</link>
		<comments>http://www.magelancers.com/how-to-check-paypal-account-reputation/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 19:07:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.magelancers.com/?p=152</guid>
		<description><![CDATA[Sometime we feel insecure while we get money or send money to an unknown person using PayPal. You may check PayPal reputation quickly by the following method: Click on Request Money Now go to next step, don&#8217;t request money after this step You would see something like below: You may check your own reputation after]]></description>
			<content:encoded><![CDATA[<p>Sometime we feel insecure while we get money or send money to an unknown person using PayPal. You may check PayPal reputation quickly by the following method:</p>
<ol>
<li>Click on Request Money <br />
<a href="http://www.magelancers.com/wp-content/uploads/2010/08/paypal-1.jpg"><img src="http://www.magelancers.com/wp-content/uploads/2010/08/paypal-1-251x300.jpg" alt="paypal-reputation check" title="paypal-reputation check" width="251" height="300" class="alignnone size-medium wp-image-153" /></a>
</li>
<li>Now go to next step, <strong>don&#8217;t request money after this step</strong><br /><a href="http://www.magelancers.com/wp-content/uploads/2010/08/paypal-2.jpg"><img src="http://www.magelancers.com/wp-content/uploads/2010/08/paypal-2-300x169.jpg" alt="" title="paypal-2 check reputation" width="300" height="169" class="alignnone size-medium wp-image-155" /></a></li>
<li>You would see something like below:<br /><a href="http://www.magelancers.com/wp-content/uploads/2010/08/paypal-31.jpg"><img src="http://www.magelancers.com/wp-content/uploads/2010/08/paypal-31-300x278.jpg" alt="" title="paypal-3" width="300" height="278" class="alignnone size-medium wp-image-166" /></a> </li>
</ol>
<p>You may check your own reputation after login to your own account, visit <code>https://www.paypal.com/us/cgi-bin/webscr?cmd=_account-rep</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magelancers.com/how-to-check-paypal-account-reputation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install multiple OS without formatting/partitioning hard disk?</title>
		<link>http://www.magelancers.com/how-to-install-multiple-os-without-formattingpartitioning-hard-disk/</link>
		<comments>http://www.magelancers.com/how-to-install-multiple-os-without-formattingpartitioning-hard-disk/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 10:32:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.magelancers.com/?p=144</guid>
		<description><![CDATA[If you would like to use multiple operating systems on your machine then we know we can install in separate drive or same drive or better to say partitioning hard disk. But there is another way to do the job without messing up your hard disk partition. No need to worry about, it is so]]></description>
			<content:encoded><![CDATA[<p>If you would like to use multiple operating systems on your machine then we know we can install in separate drive or same drive or better to say partitioning hard disk. But there is another way to do the job without messing up your hard disk partition. No need to worry about, it is so simple to install/uninstall more than one operating systems on your PC or laptop on the fly!</p>
<p>You need a software named <a href="http://www.virtualbox.org/">VirtualBox</a>, you will be happy to know that it is an open source software developed by Sun.</p>
<blockquote><p>Presently, VirtualBox runs on Windows, Linux, Macintosh and OpenSolaris hosts and supports a large number of guest operating systems  including but not limited to Windows (NT 4.0, 2000, XP, Server 2003, Vista, Windows 7), DOS/Windows 3.x, Linux (2.4 and 2.6), Solaris and OpenSolaris, and OpenBSD. </p></blockquote>
<p>That means you can install this software on Windows, Linux, Mac and OpenSolaris and install other operating systems by this software, you may have Linux, now install this VirtualBox and you would be able to install Windows 7 easily without messing up your harddisk or partitioning or spending time to install OS. No need USB drive also to test OS like Ubuntu or SuseLinux etc, you may install Windows 7 also. Those who are interested to install Windows 7 on external hard disk they may try using this software. Windows OS generally can not be installed on external hard disk, though by changing some files XP can be installed on external hard disk or USB disk (tested). Although we may not install Windows 7 on external hard disk. </p>
<p>You have to create Virtual hard disk to install Guest OS, but this is also an easier task, follow all steps correctly using Wizards. You may also remove the Virtual hard disk easily <img src='http://www.magelancers.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Take a look I am installing more than one operating systems Ubuntu and Debian O/S simultaneously, my machine runs on Windows Vista<br />
<a href="http://www.magelancers.com/wp-content/uploads/2010/07/vm.jpg"><img src="http://www.magelancers.com/wp-content/uploads/2010/07/vm-300x168.jpg" alt="" title="vm" width="300" height="168" class="alignnone size-medium wp-image-145" /></a> </p>
<p>From the screen shot hope you understand how you could save time and test as many OS as you would like to run.</p>
<p>Only thing which I did not like is the window size is 800&#215;600, guest OS could not detect my monitor and Display size is smaller, running on 24Bit than 32Bit color quality.</p>
<p>So, install many operating systems and see what may be a good choice for you!</p>
<p>After Installing Ubuntu and Debian:<br />
<a href="http://www.magelancers.com/wp-content/uploads/2010/07/vm2.jpg"><img src="http://www.magelancers.com/wp-content/uploads/2010/07/vm2-300x168.jpg" alt="" title="vm2" width="300" height="168" class="alignnone size-medium wp-image-148" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magelancers.com/how-to-install-multiple-os-without-formattingpartitioning-hard-disk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix Paypal Pro in Magento version 1.4.1.0?</title>
		<link>http://www.magelancers.com/how-to-fix-paypal-pro-in-magento-version-1-4-1-0/</link>
		<comments>http://www.magelancers.com/how-to-fix-paypal-pro-in-magento-version-1-4-1-0/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 19:06:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.magelancers.com/?p=126</guid>
		<description><![CDATA[If Paypal Pro is not working in Magento version 1.4 while you clicking on button then it means there is some javascript issues. Open Add the following line of code where we can see other javascript files. Refresh browser cache and flush magento cache, should work perfectly.]]></description>
			<content:encoded><![CDATA[<p>If Paypal Pro is not working in Magento version 1.4 while you clicking on button then it means there is some javascript issues.</p>
<p>Open</p>
<pre class="brush: plain; title: ; notranslate">app/design/frontend/your_theme_dir/your_template_dir/layout/page.xml</pre>
<p>Add the following line of code</p>
<pre class="brush: xml; title: ; notranslate">&lt;action method=&quot;addJs&quot;&gt;&lt;script&gt;lib/ccard.js&lt;/script&gt;&lt;/action&gt; </pre>
<p>where we can see other javascript files.</p>
<p>Refresh browser cache and flush magento cache, should work perfectly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magelancers.com/how-to-fix-paypal-pro-in-magento-version-1-4-1-0/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

