In this article we will show you how to install Magento and get your store up and running.We are going to do a manual installation without using any third party software. […]
How to enable system and exception logging in Magento
Magento has a very powerful logging system that can be extremely useful when debugging any issues you have. By default Magento does not record any messages about errors and exceptions; so if something bad happens, you don’t have idea. […]
Fixing PHP memory errors in Magento
In this article we will show you how to adjust the memory limits of Magento website to reduce or eliminate the memory errors all together. […]
How to Clear the Magento Cache
Magento by default includes a cache system to improve website performance.If you have made any modifications to your Magento store,They will not appear immediately unless you clear the cache. […]
How to login into Magento admin panel
If you’ve installed and configured Magento, Now you’re ready to log into your Magento Admin Panel. The administrator backend is where you can perform all of your shopping cart’s administrator functions. […]
How to Change your Magento URL
There might be a situation when you want to change the URL or domain name of your Magento website. In this article we will show you how to change the URL of your Magneto website. […]
How to enable Logs in MySQL
Logs are the best part to start troubleshooting.In this article we will show you how to enable the different type of logs into MySQL server: Error Log: It contains all the information about MySQL errors.To enable MySQL error log edit MySQL configuration file and update following setting as per your requirements. [mysqld] log_error = /var/log/mysql/error.log […]
How to install and enable EPEL repo on CentOS 7
EPEL is an open source and free community based repository project which provides 100% high quality add-on software packages for Linux distribution including RHEL (Red Hat Enterprise Linux), CentOS, and Scientific Linux. By adding EPEL repo in your server’s repository source, you’ll be able to install lots of open source packages via Yum. To install EPEL […]
Creating 301 redirects with WordPress
A 301 redirect simply inform the search engines that a page has been permanently moved. In most cases, a 301 redirect is the best way of implementing redirects on a website. […]
How to check MySQL database size
This article will guide you to calculate size of tables and database in MySQL servers though sql queries. MySQL stored all the information related to tables in database in information_schema database. We will use information_schema table to find databases and tables size. To check single database size in MySQL we may run this query,Please change ‘testdb‘ with your actual database […]