Magento

オープンソースソフトウェアeCommerceシステムMagento について
インストール  Communityバージョン

ダウンロード 

インストール手順  英語の情報

http://www.magentocommerce.com/wiki/1_-_installation_and_configuration/magento_installation_guide

インストール 日本語 このページへ

環境設定
拡張機能

・ デザインテーマ(Free版ですが、ライセンス情報およびMagento対応バージョンなど各テーマごとに確認して下さい)

www.magentocommerce.com/magento-connect/magesupport/extension/1403/free-magento-theme

www.magentocommerce.com/magento-connect/HelloThemes.com/extension/3673/hellowired_free_theme_1_4

www.magentocommerce.com/magento-connect/Mage-World/extension/1937/freepop--magento-theme

www.magentocommerce.com/magento-connect/templatemonster/extension/503/pet-store-theme

www.magentocommerce.com/magento-connect/Mage-World/extension/3784/mapple_theme

www.magentocommerce.com/magento-connect/Mage-World/extension/1758/hm-modern-theme-white-skin-

www.magentocommerce.com/magento-connect/key/extension/2113/hellokeykey-black-theme

www.magentocommerce.com/magento-connect/magesupport/extension/5055/free_mage_template_by_magesupport

www.magentocommerce.com/magento-connect/basedesigns/extension/6122/panama_theme

www.magentocommerce.com/extension/specs/2051/magento-mobile-theme#specs

www.magentocommerce.com/magento-connect/m-template.com/extension/1118/free-basic-template

www.magentocommerce.com/magento-connect/pixlpitch/extension/6840/wireframe

www.magentocommerce.com/magento-connect/aloktigga/extension/6867/shoemania_1_1_2

www.magentocommerce.com/magento-connect/mavenstore/extension/7225/mavenstore_almond_theme

www.magentocommerce.com/magento-connect/mavenstore/extension/6064/mavenstore_verdigris_theme

/www.magentocommerce.com/magento-connect/TemplatesMaster/extension/928/magento-classic-theme

www.magentocommerce.com/magento-connect/TemplatesMaster/extension/2031/magento-absolute-theme

 

・ テンプレートサイト(有償版を含む)

templates-master.com/magento-templates-and-extensions

さまざまCMSのテンプレートがあります www.templatemonster.com/category/magento-templates/

 

 

・ CMS Drupal との連携

www.magentocommerce.com/magento-connect/mtopolov/extension/1020/drupal

 

ドキュメント、マニュアル
その他  詳細は、開発元組織のサイトでご確認下さい。 www.magentocommerce.com

◎Magentoに関する勉強は、Gennai3によるオープンソースWorkShop、研修サービスをご利用下さい。詳細は 次のページへ

 

install

Magento Community Editionsのインストール概要

日本語のインストール概要はマニュアル PDF版ダウンロード ここから

・ インストール要件

・Webサーバー
    Apache Version 1.x または 2.x

・MySQLデータベース
  - MySQL 4.1.20 以上
    InnoDB storage engine

・PHP言語
    PHP 5.2.0* 以上 
 以下のエクステンションが必要です。
    PDO/MySQL
    MySQLi
    mcrypt
    mhash
    simplexml
    DOM

・そのほか
    Sendmail-互換の Mail Transfer Agent (MTA) 

・ ダウンロード

・コミュニティエディションのダウンロードは、以下のサイトから最新版をダウンロードします。
Magentoには、ほかに、有償のプロフェッショナル版とエンタープライズ版があります。
http://www.magentocommerce.com/download

・データベースの作成
MySQLのデータベースを作成します。UTF-8で作成することを推奨します。

CREATE DATABASE 'database-name' DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

確認しましょう    sql>    show databases;

・ ソースプログラムの解凍

ダウンロードしたソースファイルを解凍します。Debianの場合は、解凍先のディレクトリをApacheの権限を合わせます。たとえば、
chown -R root:www-data ディレクトリ名

その他、インストールの詳細手順、以下の英語サイト(Magento Installation Guide)を参照しましょう。

http://www.magentocommerce.com/wiki/1_-_installation_and_configuration/m...

 ・ インストールウィザードを実行します。

サイトのURLを入力するとインストールプログラムが実行されます。 もし、表示されない場合は、.htaccess などの設定が原因の場合がありますので、確認しましょう。

MySQLのデータベースをlocalhost やイントラネットでインストールする場合は、インストールウィザードでエラーになりますので、以下のように修正しましょう。

1. js\prototype ディレクトリにある “validation.js”. というファイルを開きます。
2. 以下の箇所を削除もしくはコメントに設定します。

[’validate-url’, ‘Please enter a valid URL. Protocol is required (http://, https:// or ftp://)’, function (v) {
return Validation.get(’IsEmpty’).test(v) || /^(http|https|ftp):\/\/(([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+)(:(\d+))?\/?/i.test(v)
}],