Posts Tagged ‘setup’

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

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: [ , ]
Page 1 of 11