Tutorials

Using Pear to download from MagentoConnect

This item was filled under [ Tutorials ]

Setting permissions for MagentoConnect can be a little tricky at times, especially in a production environment. The best, most secure way to go about installing Connect updates is by using Pear. SSH in to your server, head to the Magento install directory and issue command: ./pear mage-setup . DON’T forget the trailing . Next install [...]

Continue reading...

Tagged with: [ , ]

How to set your Magento SQL Connection Path

This item was filled under [ Tutorials ]

The easy way to set your MySQL path in Magento is by editing the /app/etc/local.xml file with your new details. A good example when you may need this is if your are migrating Magento across servers. <default_setup> <connection> <host><![CDATA[localhost]]></host> <username><![CDATA[username]]></username> <password><![CDATA[password]]></password> <dbname><![CDATA[database]]></dbname> <active>1</active> </connection> </default_setup>

Continue reading...

Tagged with: [ , , ]

How to change the Magento Email Templates

This item was filled under [ Tutorials ]

You’ll probably know by now that the transactional email templates in Magento are a bit, with respect, “naff”. To edit through the admin will take forever and a day so here’s a couple of useful solutions to help make things easier. 1. Locate the email templates The Magento email templates are located in (note: “en_US” [...]

Continue reading...

Setup Magento Permissions Script

This item was filled under [ Tutorials ]

Magento permissions can be an absolute pain! Use one of the solutions below to setup Magento permissions easily. 1. SSH Script #!/bin/bash find www -name .htaccess -exec chmod 604 {} ; find www -name *.php -exec chmod 644 {} ; find www -type d -exec chmod 705 {} ; 2. SSH Command Line find ./ [...]

Continue reading...

Tagged with: [ , , , ]

Magento Server Migration Guide

This item was filled under [ Tutorials ]

If you need to migrate Magento from one server to another here’s how to do it. BEFORE YOU BEGIN: Login to admin panel > System > Configuration > Web and set both the secure and insecure base urls to this:  {{base_url}} Then change the base url back once migrated across. BEGIN: Upload a fresh copy [...]

Continue reading...

Tagged with: [ , ]

Magento Server Requirements Test Script

This item was filled under [ Tutorials ]

If you’re wondering if your server is going to support MagentoCommerce then this utility will be of use. Simply download, extract and upload the magento-check.php file to your server and head to the URL to see if anything needs enabling, upgrading etc. You can find the full server requirements here. Download:

Continue reading...

Tagged with: [ , ]

What is Magento?

This item was filled under [ Tutorials ]

You may have landed here and ask, what is Magento and what can it do for me? Well here’s a couple of Youtube videos which give a great overview. Magento – Frontend Tour Magento – Backend Tour

Continue reading...

How to enable custom Magento Templates & Themes

This item was filled under [ Tutorials ]

Magento templates are split in to two areas: Directory 1: app/design/frontend/default/default/ — This directory contains the layout, translation (locale) and template materials. Directory 2: skin/frontend/default/default/ — This directory contains the images, CSS and block-specific Javascripts. You’ll notice the structure in our template .zip files is: /app/design/frontend/default/template_name /skin/frontend/default/template_name To use our Magento Templates you simply need [...]

Continue reading...

Tagged with: [ , , , , ]

Setting up a blog inside your Magento store

This item was filled under [ Tutorials ]

For selling products, especially online, one thing is very imporant. Listening to your clients. If you listen to your clients and know exactly what they want, you can target your ecommerce website to their needs and sell more products. A great way to do this is by using a blog inside your Magento ecommerce store. [...]

Continue reading...

Magento Designers Guide

This item was filled under [ Tutorials ]

Magento Designers Guide: Creating Templates A great video cast which shows how to activate Magento Templates (Themes) has been released by MagentoCommerce which explains how it’s done to the T. As Open Source is more about sharing why re-create the wheel when we can link to the already made Open Source freely available video? Click [...]

Continue reading...

Tagged with: [ , ]
Page 1 of 11