Zend Anwar

Full stack web developer

Category: Magento

Magento

How can show “Home” in navigation bar?

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 […]

Read More

“This account is locked” problem solution in Magento

“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 […]

Read More

Can I add 42 million SKUs ?

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, […]

Read More

What is Magento?

 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 […]

Read More

Magento developer in Bangladesh

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   […]

Read More

Can not open Admin panel in magento 1.7 with correct user and password

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’ […]

Read More

How to remove index.php from magento URL

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 folder[E:\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 […]

Read More

How to increase Admin session time in Magento?

How to increase Admin session time in Magento? System -> Configuration General > Web Session Cookie management Cookie Lifetime: 86400

Read More

How to change Admin URL in Magento?

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><![CDATA[admin]]></frontName> Change To : <frontname><![CDATA[administrator]]></frontName> Now your Admin url will be: yourdomain.com/administrator

Read More

There has been an error processing your request Exception printing is disabled by default for security reasons.

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 […]

Read More