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
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
There has been an error processing your request Exception printing is disabled by default for security reasons.
-
zendnwar
-
September 28, 2012
-
Magento
-
0 Comments
There has been an error processing your request Exception printing is disabled by default for security reasons. solution: open “errors” folder(E:\xampp\htdocs\magento\errors). Change local.xml.sample to local.xml Open E:\xampp\htdocs\magento\lib\Zend\Cache\Backend\File.php protected $_options = array( ‘cache_dir’ => ‘null’, change to protected $_options = array( ‘cache_dir’ => ‘tmp/’, Now the final step is to go create a “tmp” folder in the root Magento folder(E:\xampp\htdocs\magento) I …
Continue Reading