Zend Anwar

Full stack web developer

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

what is keyword density?

what is keyword density? Keyword density is important in search engine ranking. Keyword density is number of times a keyword or a keyword phrase, in proportion on a Web page. The more times the keyword appears in relation to the total number of on page words, the greater the overall keyword density. Keyword density is […]

Read More

The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.

The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Solution: Actual problem with the server, resulting in the 503 error response. In this case, you should contact your hosting provider. OR delete/rename the maintenance.flag file.(E:\xampp\htdocs\magento  ) Hope it will be solve.

Read More

How to install sample data for magento?

How to install sample data for magento Step1: Download sample data from http://www.magentocommerce.com/download Step2: Extract the sample data files from the archive. you will get magento_sample_data_for_1.6.1.0.sql Step3: Create a new aempty database for Magento. Step4:  Import the sample data sql file (magento_sample_data_for_1.6.1.0.sql) into your empty Magento database. Step5: Continue your normal installation process.

Read More

What is view in sql?

What is view? A view is, in essence, a virtual table. It does not physically exist. Rather, it is created by a query joining one or more tables. . A view is actually a composition of a table in the form of a predefined SQL query. A view can contain all rows of a table […]

Read More