How can show “Home” in navigation bar?
-
zendnwar
-
October 31, 2012
-
Magento
-
0 Comments
How can show “Home” in navigation bar? If you want to add Home button in your navigation bar just follow below information. app\design\frontend\base\default\template\page\html you will get topmenu.phtml open the file. Replace from <?php $_menu = $this->getHtml(‘level-top’) ?> <?php if($_menu): ?> <div> <ul id=”nav”> <?php echo $_menu ?> </ul> </div> <?php endif ?> Replace to <?php $_menu = $this->getHtml(‘level-top’) ?> <div> <ul …
Continue Reading
“This account is locked” problem solution in Magento
-
zendnwar
-
October 24, 2012
-
Magento
-
230 Comments
“This account is locked” problem solution in Magento Go to your database and you will find admin_user table. Please edit following filed value manually failures_num, lock_expires, first_failure Above filed value should be null. Or You can run sql query in your database. UPDATE `admin_user` SET `failures_num` = 0, `first_failure` = NULL, `lock_expires` = NULL WHERE `user_id` = 1; More question …
Continue Reading
How to improve your site pagerank?
-
zendnwar
-
October 24, 2012
-
SEO
-
1 Comment
How to improve your site pagerank? Unique Content Unique content is the king always. Every user want to know solution about their query.If your content is unique user will share with their friend. Don’t copy and paste in your site.This is harmful to improve your site page rank.Also don’t try to hidden content in your site.Remember Search Engine Too much from …
Continue Reading
Can I add 42 million SKUs ?
-
zendnwar
-
October 23, 2012
-
Magento
-
0 Comments
Can I add 42 million SKUs ? State answer No. A relational database can handle 42 millions data there is no problem.but 42million data equal to 240GB database. It will be make reindexes run forever. Remember Performance will almost be all of your focus, more products in your store means a slower store, with tweaks, caching etc you can improve …
Continue Reading
What is Magento?
-
zendnwar
-
October 18, 2012
-
Magento
-
0 Comments
What is Magento? Magento is a feature-rich eCommerce platform, built on open-source technology, that provides online merchants with unprecedented flexibility and control over the look, content, and functionality of their eCommerce store. Magento’s intuitive administration interface features powerful marketing, search engine optimization, and catalog management tools to give merchants the power to create sites that are tailored to their unique …
Continue Reading
Magento developer in Bangladesh
-
zendnwar
-
October 12, 2012
-
Magento
-
0 Comments
Magento developer in Bangladesh I am Anwar Hossain From Bangladesh, Experience Magento developer in Bangladesh. Magento is a great CMS for E-Commerce. Following Info i can support you. Magento EE/EC Installation and configuration Magento EE/EC Customization Custom theme development Magento Web Design PSD to Magento theme Magento customizations Custom code for Magento extensions …
Continue Reading
Can not open Admin panel in magento 1.7 with correct user and password
-
zendnwar
-
October 12, 2012
-
Magento
-
0 Comments
Can not open Admin panel in magento 1.7 with correct user and password This problem occurred due session problem, please follow below step. Please open Varien.php file. app\code\core\Mage\Core\Model\Session\Abstract\Varien.php Replace from $cookieParams = array( ‘lifetime’ => $cookie->getLifetime(), ‘path’ => $cookie->getPath(), ‘domain’ => $cookie->getConfigDomain(), ‘secure’ => $cookie->isSecure(), ‘httponly’ => $cookie->getHttponly() ); Replace to $cookieParams = array( ‘lifetime’ => $cookie->getLifetime(), ‘path’ => $cookie->getPath() …
Continue Reading
How to remove index.php from magento URL
-
zendnwar
-
October 10, 2012
-
Magento
-
0 Comments
How to remove index.php from magento URL If you want from this URL :: http://www.yourdomain.com/index.php/plastic-surgery/blade-breakers.html to http://www.yourdomain.com/plastic-surgery/blade-breakers.html Just follow below step :: Step1: Go to root folderE:\xampp\htdocs\magento and you will find the .htaccess file there. Replace #Rewrite Base/ magento Replace to #Rewrite Base/ Step2: Go to your admin panel. System->Configuration->Web->Search Engine Optimization “yes” Step3: Clear your Cache from Cache management …
Continue Reading
How to increase Admin session time in Magento?
-
zendnwar
-
October 4, 2012
-
Magento
-
3 Comments
How to increase Admin session time in Magento? System -> Configuration General > Web Session Cookie management Cookie Lifetime: 86400
Continue Reading
How to change Admin URL in Magento?
-
zendnwar
-
October 1, 2012
-
Magento
-
0 Comments
How to change Admin URL in Magento? This is very simple work. You have to change local.xml file. /app/etc/local.xml Change From : <frontname><!CDATAadmin></frontName> Change To : <frontname><!CDATAadministrator></frontName> Now your Admin url will be: yourdomain.com/administrator
Continue Reading