Friday, 17 November 2017

How to Install Magento Connect Extensions

Magento Connect is a marketplace that allows Magento community members and partners to share their open source or commercial contributions for Magento with the community. It contain both free and commercial extensions. Free extensions are uploaded to Magento and available for direct download from Magento Connect.

Install Magento Connect Extensions

 

  1. Navigate to the Extension Profile
  2. Select the Platform
  3. Click the Install Now button
  4. Select Your Magento Connect Channel ( For Magento 1.5+ select Magento Connect Channel 2.0 )
  5. Check the box to agree to the extension license agreement.
  6. Once you select the channel and agree to the licensing agreement, click Get Extension Key
  7.  The extension key is revealed. Click Select Key to copy the key.
  8. Log into your Magento Store Admin Panel
  9. Navigate to System > Magento Connect > Magento Connect Manager
  10. Paste the extension key in Step 2 field and click Install. Magento Connect Manager verifies the extension key and gives you options to Cancel Installation or Proceed. 
     
  11. Click Proceed. The Console Box displays the results of your install. If there are any issues, it will be displayed in Console box.
  12. Click Refresh to see this extension added to your Extensions List


 

Tuesday, 14 November 2017

Magento Installation Step by Step

Step 1.
The first thing you need to do to install Magento manually is to download the latest installation package from the official Magento website.

Step2.
 
Next, you must upload the installation package on your hosting account through your cPanel -> File Manager or using an FTP client.
In case you want the Magento installation to be primary for your domain (i.e. to run from http://xyz.com), you need to extract the content of the installation package in the public_html folder. On the other hand, if you want it to be in a subfolder like http://xyz.com/store/ you need to extract the content to public_html/store/.

Once you upload the package, you can extract it through your cPanel -> File Manager.

Step 3.

Create a MySQL database and assign a user to it through cPanel -> MySQL Databases. Remember the database details, since you will need them during the script installation.

 Step4.

Go through the Magento installation process
In our example we will install Magento in the public_html/store folder. Once the package is uploaded and extracted and you have a MySQL database, navigate to http://xyz.com/store:



Click on the check box next to "I agree to the above terms and conditions" and click on the Continue button.
Now, choose the preferred Time Zone, Locale and Currency and press the Continue button.
Next, enter the database details: Database Name, User Name and User Password. You can leave the other options intact. Make sure that you place a check on the "Skip Base URL validation before next step" option. Then, click the Continue button to proceed.
At this point you should enter the personal information and the admin login details which you want to use. You can leave the Encryption Key field empty and the script will generate one for you. Once more, click the Continue button.
Finally, Write down your encryption key; it will be used by Magento to encrypt passwords, credit cards and other confidential information.

Well Done! 
 Your Magento installation was successfully completed. Now you can navigate to its Front-end or Back-end.


Magento Cache System Basic Concepts

The Basics – How To Use Cache In this section we will see how to use cache in our custom modules. Suppose you have a custom module and w...