This article is most helpful for users who have installed Magento before and just need a reminder of the major steps in the process. If this is your first Magento installation, please refer to the Magento Installation Guide instead for fuller descriptions and troubleshooting information. Links to additional installation instructions are provided at the end.
System Requirements
Magento must be run on a Unix-based web server, with PHP 5.2+ and MySQL 4.1.20+. These instructions assume you have first set up a web server with a standard LAMP stack (Linux, Apache, MySQL, & PHP).
Supported server environment is:
- Supported Operating Systems: Linux server
- Supported Web Servers: Apache 1.3.x or Apache 2
- PHP Compatibility: 5.2.0 and above with Safe mode off
- MySQL: 4.1.20 and above
→ Refer to Magento's System Requirements page for full details or How do I know if my server is compatible with Magento? to test your server setup.
For evaluation and development purposes, Magento can be run locally on a PC or Mac using a local LAMP stack (like XAMPP, WAMP or MAMP). Windows and Mac servers are NOT supported production environments, however. Please see the links at the bottom of this document for additional considerations when installing to your localhost.
Installing Magento
These instructions document the default installation for Magento. At the end, Magento will be installed without sample data to a directory called magento on your web server. There are four main steps covered here:
- Step 1 - Download Magento
- Step 2 - Set file permissions for the Setup Wizard
- Step 3 - Create your store database
- Step 4 - Run the web-based Setup Wizard
- All done!
Step 1—Download Magento
Method 1: Download Magento to your computer and FTP it up to your server
- Using a browser, download the latest full release archive file from MagentoCommerce.com (http://www.magentocommerce.com/download)
- On your computer, extract Magento from the downloaded archive. A folder named magentocontaining all of the Magento files will be created
- Using an FTP client, upload the extracted magento folder and all its contents to the web root on your web server (usually public_html)
Method 2: Download Magento directly to your server (requires SSH access)
If you have SSH access to your server, using wget to download the archive directly to your server is much faster and simpler than Method 1.- Using SSH, log onto your server and go to the web root directory (usually public_html)
- Get the full release archive using the wget command below
- On your server, extract Magento from the downloaded archive. A directory named magentocontaining all of the Magento files will be created under public_html
(Replace 1.4.1.0 in the commands above with the desired version number. Current and previous version numbers can be seen on the Download page on MagentoCommerce.com)
→ More information: [wiki] Installing Magento via SSH
Step 2—Set file permissions for the Setup Wizard
On your web server, make the directories that the Setup Wizard needs writeable by the web server
Files & directories that must be writeable are:
- - file: magento/var/.htaccess
- - directory: magento/app/etc
- - directory: magento/var
- - all the directories under: magento/media
If you are using FTP, set the permissions of each to 777 or check read/write/execute for owner, user and group. If you are using SSH, use the following commands:
→ More information: [wiki] Magento File System Permissions
Step 3—Create your store database
- Create an empty MySQL database for your store
This step varies by hosting provider and is out of the scope of this document. Consult your System Administrator or your web host's support/documentation for instructions on how to do this. PHPmyAdmin or the MySQL command line are the most commonly used tools/methods for creating and managing a MySQL database - Create a database user with full privileges to the database
- Make note of the database name (dbname), db user (dbuser), db user password (dbpassword)
- If you want to load sample data, you must do it now, before you run the setup Wizard in the next step
→ More information: Installing the Sample Data for Magento
Step 4—Run the web-based Setup Wizard
- Using a browser, run the Setup Wizard
Go to your website by domain or IP address (http://www.yourDomain.com/magento orhttp://yourIP.0.0.1/magento) and the Setup Wizard will run automatically - In the Setup Wizard, finish configuring your Magento installation
- License Agreement - Read and accept the terms and conditions
- Localization (settings can be changed later via the Admin Panel)
- Locale—default country & language
- Time zone—default time zone
- Default currency
- Configuration
Database- Host—localhost works for most basic installations
- Database name—dbname from when you created the database
- User name—dbuser from when you created the database
- User Password—dbpass from when you created the database
- Base URL—for default installation into a magento directory, base URL should be http://www.yourDomain.com/magento orhttp://www.yourIP.com/magento. (If you're installing Magento locally on PC or Mac, this should be 127.0.0.1/magento--you cannot put "localhost" here unless you've previously set it up in your local hosts file.)
- Admin path—default is "admin" (will be appended to base URL to reach Admin Panel)
- Skip Base URL Validations Before the Next Step
- Use Web Server (Apache) Rewrites
- Use Secure URLs
- Admin Account
- Name & contact info for 1st Admin user
- Login info for 1st admin user (username & password)
- Encryption key—Database encryption key. If you do not provide one, Magento will automatically generate one. It will be displayed to you and saved in the app/etc/local.xml file.
Success!
After you finish the set up wizard, you will be redirected to the Magento storefront. You can access the Admin Panel and start adding categories and products.
- Your frontend store will have the URL http://www.yourDomain.com/magento
- Your Admin Panel will have the URL http://www.yourDomain.com/magento/admin
(Log in using the username and password you created in the last step of the Setup Wizard)
No comments:
Post a Comment