<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7014172856992517135</id><updated>2012-02-08T02:12:01.313-08:00</updated><category term='Web PHP Programmer'/><title type='text'>Euabs PHP programming and development</title><subtitle type='html'>This euabs blog tackle about Database and PHP Programming.It is intended of sharing ideas and finding better solutions...</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>20</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-3135383673774329885</id><published>2011-05-20T09:58:00.001-07:00</published><updated>2011-05-20T09:58:58.706-07:00</updated><title type='text'>How to integrate external system in magento using oauth?</title><content type='html'>Do you have any idea on how to do this, please feel free to comments here...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-3135383673774329885?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/3135383673774329885/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2011/05/how-to-integrate-external-system-in.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/3135383673774329885'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/3135383673774329885'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2011/05/how-to-integrate-external-system-in.html' title='How to integrate external system in magento using oauth?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-2054177477396980535</id><published>2011-04-11T07:50:00.001-07:00</published><updated>2011-04-11T07:50:53.360-07:00</updated><title type='text'>Creating users to use MySQL and Changing Root Password in Linux debian</title><content type='html'>By default mysql creates user as root and runs with no passport. You might need to change the root password.&lt;br /&gt;&lt;br /&gt;To change Root Password&lt;br /&gt;= mysql -u root&lt;br /&gt;mysql&gt; USE mysql;&lt;br /&gt;mysql&gt; UPDATE user SET Password=PASSWORD('new-password') WHERE user='root';&lt;br /&gt;mysql&gt; FLUSH PRIVILEGES;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-2054177477396980535?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/2054177477396980535/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2011/04/creating-users-to-use-mysql-and.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/2054177477396980535'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/2054177477396980535'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2011/04/creating-users-to-use-mysql-and.html' title='Creating users to use MySQL and Changing Root Password in Linux debian'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-5079745715567373977</id><published>2011-02-04T22:21:00.000-08:00</published><updated>2011-02-04T22:25:51.892-08:00</updated><title type='text'>Storing variable or other data using pear cache</title><content type='html'>You can do this by using the base cache class:&lt;br /&gt;&lt;pre class="php" name="code"&gt;&lt;br /&gt;require_once(“Cache.php”);&lt;br /&gt;&lt;br /&gt;$cache = new Cache(“file”, array(“cache_dir” =&gt; “cache/”) );&lt;br /&gt;$id = $cache-&gt;generateID(“this is a unique key”);&lt;br /&gt;&lt;br /&gt;if ($data = $cache-&gt;get($id)) {&lt;br /&gt;&lt;br /&gt;print “Cache hit.&lt;br /&gt;Data: $data”;&lt;br /&gt;&lt;br /&gt;} else {&lt;br /&gt;&lt;br /&gt;$data = “The quality of mercy is not strained…”;&lt;br /&gt;$cache-&gt;save($id, $data, $expires = 60);&lt;br /&gt;print “Cache miss.&lt;br /&gt;”;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;To save the data we use save(). If your unique key is already a legal file name, you can bypass the generateID() step. Objects and arrays can be saved because save() will serialize the data for you. The last parameter controls when the data expires; this can be the seconds to cache the data, or a Unix integer timestamp giving the date and time to expire the data, or zero to use the default of 24 hours. To retrieve the cached data we use get().&lt;br /&gt;&lt;br /&gt;You can delete a cached data item using $cache-&gt;delete($id) and remove all cached items using $cache-&gt;flush().&lt;br /&gt;&lt;br /&gt;New: A faster Caching class is Cache-Lite. Highly recommended.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-5079745715567373977?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/5079745715567373977/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2011/02/storing-variable-or-other-data-using.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/5079745715567373977'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/5079745715567373977'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2011/02/storing-variable-or-other-data-using.html' title='Storing variable or other data using pear cache'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-5657289803301744371</id><published>2010-11-10T22:23:00.000-08:00</published><updated>2010-11-10T22:24:45.028-08:00</updated><title type='text'>how to customized tax in virtuemart?</title><content type='html'>Customizing tax in virtue-mart is not an easy task to do.&lt;br /&gt;1.go to ps_checkout.php in classes folder&lt;br /&gt;2.custom the code in there about the task you want to.&lt;br /&gt;3.you have to be carefull in doing customizing the code cause it affects all virtue-mart process.&lt;br /&gt;4.Just touch the code that ralate to the issue.&lt;br /&gt;5. create your own function so that will not affect the other functions in there&lt;br /&gt;6. You can use the other function through your fnction created.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-5657289803301744371?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/5657289803301744371/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/11/how-to-customized-tax-in-virtuemart.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/5657289803301744371'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/5657289803301744371'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/11/how-to-customized-tax-in-virtuemart.html' title='how to customized tax in virtuemart?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-6057770180651995532</id><published>2010-10-28T10:55:00.000-07:00</published><updated>2010-10-28T10:55:17.351-07:00</updated><title type='text'>Creating your own desired joomla template</title><content type='html'>Creating joomla template is just a simple task to do. Any body can make their own template according to the design they want, but basically you need to be familiar of the joomla CMS itself.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-6057770180651995532?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/6057770180651995532/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/10/creating-your-own-desired-joomla.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/6057770180651995532'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/6057770180651995532'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/10/creating-your-own-desired-joomla.html' title='Creating your own desired joomla template'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-5419254680271986576</id><published>2010-08-11T13:30:00.000-07:00</published><updated>2010-08-11T13:33:03.971-07:00</updated><title type='text'>How to custom  the shipping methods in joomla virtuemart?</title><content type='html'>1. go to site.com\administrator\components\com_virtuemart\html\&lt;br /&gt;2. Open order.order_print.php&lt;br /&gt;3. then edit the shipping information you want to.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-5419254680271986576?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/5419254680271986576/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/08/how-to-custom-hide-shipping-methods.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/5419254680271986576'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/5419254680271986576'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/08/how-to-custom-hide-shipping-methods.html' title='How to custom  the shipping methods in joomla virtuemart?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-5787522965735437996</id><published>2010-07-07T13:18:00.000-07:00</published><updated>2010-07-07T13:18:43.550-07:00</updated><title type='text'>How to edit mailfrom in joomla?</title><content type='html'>Mostly of the developer encountered problem in editing the default mailfrom in joomla&lt;br /&gt;but there are many solution on this.&lt;br /&gt;First Solution:&lt;br /&gt;1. Go to site_url/&lt;br /&gt;2. Edit the configuration.php&lt;br /&gt;3.Find: &lt;br /&gt;&lt;pre code="php"&gt; var $mailfrom&lt;br /&gt;&lt;/pre&gt;4.Then Edit to the desired mail from&lt;br /&gt;&lt;br /&gt;Second Solution:&lt;br /&gt;1. Go to admin/global Configuration/Server&lt;br /&gt;2. Edit Mail From Field.&lt;br /&gt;&lt;br /&gt;3rd Solution:&lt;br /&gt;1.Go to PHPmyadmin&lt;br /&gt;2.databasename/jos_vm_vendor&lt;br /&gt;3. Search the old mailfrom&lt;br /&gt;4. Edit to the new one&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-5787522965735437996?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/5787522965735437996/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/07/how-to-edit-mailfrom-in-joomla.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/5787522965735437996'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/5787522965735437996'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/07/how-to-edit-mailfrom-in-joomla.html' title='How to edit mailfrom in joomla?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-2415529749908836747</id><published>2010-07-02T08:12:00.000-07:00</published><updated>2010-07-02T08:12:18.147-07:00</updated><title type='text'>How to display dynamically the category name in frontend,admin and also in email sent in virtuemart in the desired position?</title><content type='html'>Mostly in virtuemart display category name in the admin but you cannot control where you want to display.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-2415529749908836747?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/2415529749908836747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/07/how-to-display-dynamically-category.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/2415529749908836747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/2415529749908836747'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/07/how-to-display-dynamically-category.html' title='How to display dynamically the category name in frontend,admin and also in email sent in virtuemart in the desired position?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-952805335029171093</id><published>2010-06-24T14:30:00.000-07:00</published><updated>2010-06-24T14:31:42.538-07:00</updated><title type='text'>How to fix the selection of country if it did not select any country?</title><content type='html'>Just like this:&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_YikM4weQIzo/TCPMyUdzZ6I/AAAAAAAAAG4/FS7G3ZE6mkc/s1600/2010-06-25_0522.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_YikM4weQIzo/TCPMyUdzZ6I/AAAAAAAAAG4/FS7G3ZE6mkc/s320/2010-06-25_0522.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;and it will remove all the data first inputed.&lt;br /&gt;&lt;br /&gt;How to make the data still intact?&lt;br /&gt;1. Go sitename.com/administrator/components/com_virtuemart/classes/&lt;br /&gt;2. Open ps_userfield.php at line 696&lt;br /&gt;3. Or find the code:&lt;br /&gt;&lt;pre class="php" name="code"&gt;else if( formelement.options ) {&lt;br /&gt;&lt;/pre&gt;4. and after this code paste this code:&lt;br /&gt;&lt;pre class="php" name="code"&gt;if(document.getElementById('country_field').value == ''){&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; alert('Country is required!');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return false;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&lt;/pre&gt;&lt;br /&gt;Then the bugs is fix.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-952805335029171093?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/952805335029171093/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/06/how-to-fix-selection-of-country-if-it.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/952805335029171093'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/952805335029171093'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/06/how-to-fix-selection-of-country-if-it.html' title='How to fix the selection of country if it did not select any country?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_YikM4weQIzo/TCPMyUdzZ6I/AAAAAAAAAG4/FS7G3ZE6mkc/s72-c/2010-06-25_0522.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-7134466023823920905</id><published>2010-06-24T09:52:00.000-07:00</published><updated>2010-06-24T11:29:20.046-07:00</updated><title type='text'>How to fix the required fields issue  in joomla virtuemart?</title><content type='html'>Notice:&lt;br /&gt;this scenario exist when the user does not log in or sign in.&lt;br /&gt;Here's the scenario how bugs exist in virtuemart:&lt;br /&gt;1.You need to shop then select one product you want.&lt;br /&gt;2.Add this product to cart.&lt;br /&gt;3.Then Click check out.&lt;br /&gt;4.Then click automatically the "Send Registration" button.&lt;br /&gt;5.Try to put some text in other required field and click the "Send Registration" button again. &lt;br /&gt;&lt;br /&gt;then after here's the picture:&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_YikM4weQIzo/TCOJ7wjpkNI/AAAAAAAAAGw/FAL3XhhPDgI/s1600/tempForm.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_YikM4weQIzo/TCOJ7wjpkNI/AAAAAAAAAGw/FAL3XhhPDgI/s320/tempForm.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;as you observed just like others do even you filled the other required fields the label still in &lt;span style="color: red;"&gt;RED&lt;/span&gt; color.&lt;br /&gt;&lt;br /&gt;then how to solve this?&lt;br /&gt;&lt;br /&gt;1. You have to custom code the core code.&lt;br /&gt;2. Go to yoursite.com/administrator/components/com_virtuemart/classes/&lt;br /&gt;3. Open ps_userfield.php in line 664&lt;br /&gt;4. Or try to find this code&lt;br /&gt;&lt;pre class="php" name="code"&gt;if( !formelement ) { continue; }&lt;br /&gt;&lt;/pre&gt;5. Then insert this code after the code above&lt;br /&gt;&lt;pre class="php" name="code"&gt;document.getElementById(required_fields[i]+'$div_id_postfix').className += 'temp';&lt;br /&gt;&lt;/pre&gt;6. And save it, now your problem is fixed.&lt;br /&gt;&lt;br /&gt;try to comments if problem occur&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-7134466023823920905?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/7134466023823920905/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/06/how-to-edit-red-display-of-required.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/7134466023823920905'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/7134466023823920905'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/06/how-to-edit-red-display-of-required.html' title='How to fix the required fields issue  in joomla virtuemart?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_YikM4weQIzo/TCOJ7wjpkNI/AAAAAAAAAGw/FAL3XhhPDgI/s72-c/tempForm.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-2032832985207168817</id><published>2010-06-09T12:35:00.001-07:00</published><updated>2010-06-09T12:35:37.323-07:00</updated><title type='text'>What is a magento connect extension key?</title><content type='html'>&lt;strong&gt;Please d&lt;span class="search_hit"&gt;on&lt;/span&gt;’t edit the page with  the &lt;span class="search_hit"&gt;Extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt;  key to your specific product - this is a generalized wiki article  pertaining to &lt;span class="search_hit"&gt;Extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt;  Keys in general.&lt;/strong&gt; &lt;br /&gt;&lt;hr /&gt;    &lt;strong&gt;The &lt;span class="search_hit"&gt;Magento&lt;/span&gt; &lt;span class="search_hit"&gt;Extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt; Key&lt;/strong&gt; &lt;br /&gt;&lt;strong&gt;Obtain an &lt;span class="search_hit"&gt;extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt; from &lt;span class="search_hit"&gt;Magento&lt;/span&gt;  C&lt;span class="search_hit"&gt;on&lt;/span&gt;nect&lt;/strong&gt; &lt;br /&gt;&lt;pre class="code"&gt;1. Click the link to &lt;span class="search_hit"&gt;Magento&lt;/span&gt; C&lt;span class="search_hit"&gt;on&lt;/span&gt;nect if you need to go and find an &lt;span class="search_hit"&gt;Extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;2. Click "Get &lt;span class="search_hit"&gt;Extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt; Key", agree to terms, and then copy the &lt;span class="search_hit"&gt;extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt; key. &lt;/pre&gt;&lt;span class="search_hit"&gt;On&lt;/span&gt;ce you obtain the &lt;span class="search_hit"&gt;Extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt; Key  from &lt;span class="search_hit"&gt;Magento&lt;/span&gt; C&lt;span class="search_hit"&gt;on&lt;/span&gt;nect,  follow the instructi&lt;span class="search_hit"&gt;on&lt;/span&gt;s below to  install the &lt;span class="search_hit"&gt;Extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt;  to your site.   Pay special attenti&lt;span class="search_hit"&gt;on&lt;/span&gt;  to the &lt;span class="search_hit"&gt;extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt;  release: For example, if it is Beta you will need to c&lt;span class="search_hit"&gt;on&lt;/span&gt;figure your  store to accept Beta &lt;span class="search_hit"&gt;extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt;s.    &lt;br /&gt;&lt;pre class="code"&gt;1. Sign into your &lt;span class="search_hit"&gt;Magento&lt;/span&gt; store admin &lt;br /&gt;2. Navigate to System &amp;gt; &lt;span class="search_hit"&gt;Magento&lt;/span&gt; C&lt;span class="search_hit"&gt;on&lt;/span&gt;nect &amp;gt; &lt;span class="search_hit"&gt;Magento&lt;/span&gt; C&lt;span class="search_hit"&gt;on&lt;/span&gt;nect Manager. &lt;br /&gt;3. Paste in the &lt;span class="search_hit"&gt;extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt; key and click "Install". If you run into any issues, c&lt;span class="search_hit"&gt;on&lt;/span&gt;sult the &lt;span class="search_hit"&gt;extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt; &lt;span class="search_hit"&gt;documentati&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt; &lt;span class="search_hit"&gt;forums&lt;/span&gt; &lt;span class="search_hit"&gt;on&lt;/span&gt; &lt;span class="search_hit"&gt;Magento&lt;/span&gt;.&lt;/pre&gt;If you need to c&lt;span class="search_hit"&gt;on&lt;/span&gt;figure your store to  accept Beta or other releases. &lt;br /&gt;&lt;pre class="code"&gt;1. Sign into your &lt;span class="search_hit"&gt;Magento&lt;/span&gt; store admin &lt;br /&gt;2. Navigate to System &amp;gt; &lt;span class="search_hit"&gt;Magento&lt;/span&gt; C&lt;span class="search_hit"&gt;on&lt;/span&gt;nect &amp;gt; &lt;span class="search_hit"&gt;Magento&lt;/span&gt; C&lt;span class="search_hit"&gt;on&lt;/span&gt;nect Manager. &lt;br /&gt;3. Select the "Settings" tab, and choose the "Preferred State"&lt;br /&gt;4. Save Settings&lt;br /&gt;5. Return to the &lt;span class="search_hit"&gt;Extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt; Tab, paste the &lt;span class="search_hit"&gt;extensi&lt;span class="search_hit"&gt;on&lt;/span&gt;&lt;/span&gt; key and click "Install"&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-2032832985207168817?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/2032832985207168817/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/06/what-is-magento-connect-extension-key.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/2032832985207168817'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/2032832985207168817'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/06/what-is-magento-connect-extension-key.html' title='What is a magento connect extension key?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-5099271534101458915</id><published>2010-06-04T10:51:00.001-07:00</published><updated>2010-06-04T10:51:36.216-07:00</updated><title type='text'>How to enable the adsense problem in the site?</title><content type='html'>is there any one has the idea in solving this problem...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-5099271534101458915?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/5099271534101458915/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/06/how-to-enable-adsense-problem-in-site.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/5099271534101458915'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/5099271534101458915'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/06/how-to-enable-adsense-problem-in-site.html' title='How to enable the adsense problem in the site?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-8877059809474461711</id><published>2010-06-04T09:47:00.000-07:00</published><updated>2010-06-04T09:48:22.216-07:00</updated><title type='text'>About AdSense and Google Affiliate Network for Your Blog</title><content type='html'>&lt;a href="http://www.google.com/support/blogger/bin/answer.py?hl=en&amp;amp;answer=42534&amp;amp;ctx=share"&gt;About AdSense and Google Affiliate Network for Your Blog&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-8877059809474461711?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/8877059809474461711/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/06/about-adsense-and-google-affiliate.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/8877059809474461711'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/8877059809474461711'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/06/about-adsense-and-google-affiliate.html' title='About AdSense and Google Affiliate Network for Your Blog'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-892915557653507990</id><published>2010-06-02T09:13:00.000-07:00</published><updated>2010-06-02T09:13:22.066-07:00</updated><title type='text'>How to create a custom maintenance page in magento?</title><content type='html'>New Magento 1.4 brings changes in how errors are displayed along with an easy way to put your favorite store into maintenance mode.&lt;br /&gt;&lt;br /&gt;If you check index.php file of new Magento 1.4, you’ll notice one interesting thingy, it checks for existence of “maintenance.flag” file in store root, if it’s found your store is put into maintenance mode. Service Temporarily Unavailable page is displayed with Please try again later message. Remember that administration can’t be accessed in maintenance mode along with the store.&lt;br /&gt;&lt;br /&gt;Developers probably noticed that errors also are no longer displayed like before, as mentioned on Magento blog:&lt;br /&gt;Since version 1.4.0.0 for security reasons the trace in the Magento error report page is disabled by default. The “Error log number” does not give any information about the error. To enable the trace copy the errors/local.xml.sample to errors/local.xml and follow the instructions described in that file.&lt;br /&gt;&lt;br /&gt;By default, error logs are placed in /var/report, named by mentioned log number. local.xml file is well commented, so open it and check possible configuration options. I really like emailing of error reports to specified email address.&lt;br /&gt;&lt;br /&gt;If you want to change default maintenance look, you can change myskin value in /errors/local.xml file and create new /errors/myskin folder based on /errors/default. It functions the similar way as themes, if the phtml file isn’t found in your skin, the default will be used.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-892915557653507990?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/892915557653507990/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/06/how-to-create-custom-maintenance-page.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/892915557653507990'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/892915557653507990'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/06/how-to-create-custom-maintenance-page.html' title='How to create a custom maintenance page in magento?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-4841152830003072145</id><published>2010-06-01T07:54:00.000-07:00</published><updated>2010-06-15T08:44:24.864-07:00</updated><title type='text'>How to add featured products to homepage in magento</title><content type='html'>====== Add Featured Products to Home Page ======&lt;br /&gt;&lt;br /&gt;- Create a category to contain the featured products. Call it e.g. "Featured" or "Home Page". Set "Is Active" to No. That way, it won't display in the catalog menu.&lt;br /&gt;- After saving the category, please note what ID it gets. You can see it in the last part of the URL. If the URL ends with ''catalog_category/edit/id/8/'', the ID is 8. On later version, the ID is next to the category name:{{how_to:categoryid.png?625}}&lt;br /&gt;- Add products for the home page to the new category.&lt;br /&gt;- Edit the Home Page (CMS -&amp;gt; Manage Pages -&amp;gt; Home Page) and add the following content, where 8 should be replaced by your category ID:&lt;br /&gt;&lt;br /&gt;&lt;pre name="code" class="php"&gt;{{block type="catalog/product_list" category_id="8" template="catalog/product/list.phtml"}}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;{{how_to:notice.png}} If your product/list.html references $this-&amp;gt;getColumnCount() you can vary the column count (e.g. 4 columns) from the default (3) displayed by using:&lt;br /&gt;&lt;pre name="code" class="php"&gt;{{block type="catalog/product_list" column_count="4" category_id="8" template="catalog/product/list.phtml"}}&lt;br /&gt;&lt;/pre&gt;Although displaying more than 3 columns in your template would likely require additional CSS/layout changes as well.&lt;br /&gt;&lt;br /&gt;If you want a view that is different from the category lists, you can copy and modify list.phtml and change the path above. Following steps is an example.&lt;br /&gt;&lt;br /&gt;==== Add Bestsellers to Home Page using the best-selling box of Blue Theme ====&lt;br /&gt;In Blue Theme, there is a sample HTML code in the content box (Admin -&amp;gt; CMS -&amp;gt; Manage Pages -&amp;gt; Home Page) that displays a list of Best Selling Products. You can easily modify list.phtml to reuse the skin of the best-selling box. Adding featured products to Home Page is a matter of clicking to select the required products in the category (Admin -&amp;gt; CMS -&amp;gt; Manage Categories -&amp;gt; Category Products tab) as outlined in the above method and there is no need to mess with the HTML code in the CMS. &lt;br /&gt;&lt;br /&gt;- Copy the following code to your preferred text editor &lt;br /&gt;&lt;pre name="code" class="php"&gt;getLoadedProductCollection() ?&amp;gt;&lt;br /&gt;count()): ?&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="note-msg"&gt;__('There are no products matching the selection.') ?&amp;gt;&lt;/div&gt;&lt;div class="box best-selling"&gt;count() ?&amp;gt;&lt;br /&gt;&lt;table border="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;br /&gt;&lt;tr&gt;                      &lt;td&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.blogger.com/%3C?php%20echo%20$_product-%3EgetProductUrl%28%29%20?%3E"&gt;&lt;br /&gt;&lt;br /&gt;&lt;img alt="&amp;lt;?php echo $this-&amp;gt;htmlEscape($_product-&amp;gt;getName()) ?&amp;gt;" class="product-img" height="95" src="%3C?php%20echo%20$this-%3Ehelper%28%27catalog/image%27%29-%3Einit%28$_product,%20%27small_image%27%29-%3Eresize%2895,%2095%29;%20?%3E" width="95" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="product-description"&gt;&lt;a href="http://www.blogger.com/%3C?php%20echo%20$_product-%3EgetProductUrl%28%29%20?%3E" title="&amp;lt;?php echo $this-&amp;gt;htmlEscape($_product-&amp;gt;getName()) ?&amp;gt;"&gt;htmlEscape($_product-&amp;gt;getName()) ?&amp;gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;getPriceHtml($_product, true) ?&amp;gt;&lt;br /&gt;&lt;br /&gt;getRatingSummary()): ?&amp;gt;&lt;br /&gt;&lt;br /&gt;getReviewsSummaryHtml($_product, 'short') ?&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;getShortDescription()) ?&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.blogger.com/%3C?php%20echo%20$_product-%3EgetProductUrl%28%29%20?%3E" title="&amp;lt;?php echo $this-&amp;gt;htmlEscape($_product-&amp;gt;getName()) ?&amp;gt;"&gt;&lt;small&gt;__('Learn More') ?&amp;gt;&lt;/small&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                  &lt;/tr&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;decorateGeneric($$('tr'), ['last', 'odd', 'even']);&lt;br /&gt;&lt;/script&gt; &lt;/tbody&gt; &lt;/table&gt;&lt;/div&gt;count() ?&amp;gt;&lt;br /&gt;&lt;/pre&gt;-  Name it homelist.phtml and save it in location ''app/design/frontend/default/blue/template/catalog/product'', create the folders where necessary&lt;br /&gt;- Edit the Home Page (CMS -&amp;gt; Manage Pages -&amp;gt; Home Page) and add the following content, where 19 should be replaced by your category ID:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;h3&gt;Best Selling Products&lt;/h3&gt;&lt;pre name="code" class="php"&gt;{{block type="catalog/product_list" category_id="19" template="catalog/product/homelist.phtml"}}  &lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;**Please note:** In order to make this work for more than one block of products with different category IDs on the same page, you need to add the following code at the end of your phtml file(s):&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;===== Alternative way: =====&lt;br /&gt;If you are on 1.4 or greater or 1.7EE or greater then this post is no longer valid as magento has moved to using widgets. You can find a featured product widget here: http://www.magewidgets.com/featured-products-widget.html &lt;br /&gt;&lt;br /&gt;If you want more in depth way, try to view this post:&lt;br /&gt;http://inchoo.net/ecommerce/magento/featured-products-on-magento-frontpage/&lt;br /&gt;&lt;br /&gt;If you're using Magento v1.1.5 or later, you might want to use these code snippets instead:&lt;br /&gt;http://www.magentocommerce.com/boards/viewthread/4780/P15/#t44262&lt;br /&gt;This approach uses core functions instead of using Zend DB to figure out how to build a query statement.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-4841152830003072145?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/4841152830003072145/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/06/how-to-add-featured-products-to_01.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/4841152830003072145'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/4841152830003072145'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/06/how-to-add-featured-products-to_01.html' title='How to add featured products to homepage in magento'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-3576171429549615013</id><published>2010-05-21T10:19:00.000-07:00</published><updated>2010-05-21T10:28:47.890-07:00</updated><title type='text'>Magento: How to fix the cookie problem when logging or registering as a customer?</title><content type='html'>&lt;div class="afm cfm"&gt;open your hosts file with notepad (or another  plain text editor, do not use word!)&lt;br /&gt;The location of the file is c:\windows\system32\drivers\etc\hosts&lt;br /&gt;&lt;br /&gt;Add the ip address and the magento e-commerce URL:&lt;br /&gt;&lt;br /&gt;example:&lt;br /&gt;127.0.0.1     www.localhost.local   localhost.local&lt;br /&gt;&lt;br /&gt;save the file and open your browser with : the path(url to your magento e-commerce)&lt;br /&gt;Do not forget to edit the url path(s) in admin panel under  System&amp;gt;Configuration&amp;gt;Web&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-3576171429549615013?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/3576171429549615013/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/05/magento-how-to-fix-cookie-problem-when.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/3576171429549615013'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/3576171429549615013'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/05/magento-how-to-fix-cookie-problem-when.html' title='Magento: How to fix the cookie problem when logging or registering as a customer?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-4734770503339523654</id><published>2010-05-21T10:15:00.001-07:00</published><updated>2010-05-21T10:16:11.686-07:00</updated><title type='text'>Magento: How to hide unwanted blocks in the sidebar on some pages using Layout Update XML?</title><content type='html'>do you have any idea on how to do this?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-4734770503339523654?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/4734770503339523654/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/05/how-to-hide-unwanted-blocks-in-sidebar.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/4734770503339523654'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/4734770503339523654'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/05/how-to-hide-unwanted-blocks-in-sidebar.html' title='Magento: How to hide unwanted blocks in the sidebar on some pages using Layout Update XML?'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-8780663279310267034</id><published>2010-05-21T10:13:00.000-07:00</published><updated>2010-06-01T07:47:07.118-07:00</updated><title type='text'>Magento E-commerce</title><content type='html'>Import all inventory  automatically?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-8780663279310267034?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/8780663279310267034/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/05/magento-e-commerce.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/8780663279310267034'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/8780663279310267034'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/05/magento-e-commerce.html' title='Magento E-commerce'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-3546870852055133120</id><published>2010-03-23T11:58:00.000-07:00</published><updated>2010-03-23T12:03:18.116-07:00</updated><title type='text'>debian Installation</title><content type='html'>&lt;span style="font-style: italic;"&gt;&lt;span style="font-size:85%;"&gt;How to install apache and PHP in debian?&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-3546870852055133120?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/3546870852055133120/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2010/03/debian-installation.html#comment-form' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/3546870852055133120'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/3546870852055133120'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2010/03/debian-installation.html' title='debian Installation'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7014172856992517135.post-3942974567529760651</id><published>2009-10-15T13:50:00.000-07:00</published><updated>2010-06-25T06:21:12.504-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Web PHP Programmer'/><title type='text'>Installing MySQL Database Server in debian</title><content type='html'>How to do this?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7014172856992517135-3942974567529760651?l=euabs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://euabs.blogspot.com/feeds/3942974567529760651/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://euabs.blogspot.com/2009/10/free-lance-it-services.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/3942974567529760651'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7014172856992517135/posts/default/3942974567529760651'/><link rel='alternate' type='text/html' href='http://euabs.blogspot.com/2009/10/free-lance-it-services.html' title='Installing MySQL Database Server in debian'/><author><name>You-abs</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='22' src='http://4.bp.blogspot.com/_YikM4weQIzo/S6khOSRvwWI/AAAAAAAAABE/oVmo5iu5x7s/S220/avatar.gif'/></author><thr:total>2</thr:total></entry></feed>
