Sonntag, 27. Juni 2010

Erstellung eines Magento Multistore mit mehreren Websites

video:
http://www.magentocommerce.com/blog/comments/video-creating-multiple-online-storefronts-part1/

  1. Erstellung eines Verzeichnisses im root-Verzeichnis der magento-Installation; der Verzeichnisname entspricht dem Namen der neuen Webseite
  2. Kopieren der .htaccess und der index.php-Dateien aus der bestehenden Webseite in das neue Verzeichnis
  3. Editieren des neuen index.php-Files: Editieren des "require_once"-Eintrags: 'app/Mage.php' muss in '../app/Mage.php' geändert werden - falls 'app/Mage.php' als Variable gespeichert ist, muss die Variable editiert werden
  4. Editieren des "Mage::run"-Eintrags des neuen index.php-Files: Ersetzen des ursprünglichen Eintrags "Mage::run($mageRunCode, $mageRunType);" durch "Mage::run('', 'website');"
  5. Erstellen einer Root-Kategorie für die neue Webseite: unter Katalog -> Kategorien verwalten den Namen der neuen Kategorie eintragen - wichtig: dazu keine Store view auswählen; dabei müssen "Is active" und "Is Anchor" auf "Ja" gesetzt werden
  6. Erstellen der neuen Webseite unter System -> Stores verwalten -> Website anlegen: Namen der neuen Webseite sowie String-Identifier (in Kleinbuchstaben) angeben; keine Reihenfolge angeben
  7. Erstellen eines neuen Stores: System -> Stores verwalten -> Store anlegen: Dazu wird die neue Website ausgewählt. Zusätzlich müssen der Name des neuen Stores und die Root-Kategorie angegeben werden.
  8. Erzeugen einer neuen Store-View unter System -> Stores verwalten -> StoreView anlegen: Auswahl des Store, Angabe des neuen Namens, eines Codes (String-Identifier in Kleinbuchstaben), Status "Aktiviert"
  9. Konfiguration der Url: unter System -> Konfiguration -> Aktueller Konfig-Bereich Auswahl der Store-View. Die Url wird unter Allgemein -> Web -> Ungesichert -> Basis Url eingetragen; z.B. "http://127.0.0.1/magento"
  10. Unter Sicher -> Basis Url wird zusätzlich die Secure Url eingetragen. Dazu wird die Checkbox "Website verwenden" deselektiert. An die bestehende Url wird die Url der neuen Website angehängt, z.B. "{{unsecure_base_url}}/". Dabei den Slash nicht vergessen und keinen Slash vor die Bezeichnung der neuen Website stellen.
  11. System -> Configuration -> General -> Web -> Unsecure -> Base Link Url: check off "Use default" and append the url of the new website, e.g. "{{unsecure_base_url}}/ - don't forget the slash at the end and don't use any flash before the new website name
  12. System -> Configuration -> General -> Web -> Secure -> Base Url: check off "Use default" and fill in the secure url of your main magento website, e.g. "https://127.0.0.1/magento"
  13. System -> Configuration -> General -> Web -> Secure -> Base Link Url: check off "Use default" and append the url of the new website, e.g. "{{unsecure_base_url}}/ - don't forget the slash at the end and don't use any flash before the new website name
  14. Save the configuration. If you now go to the site of your new store, you get the message, that there's no cms page configured.
  15. Now, you can add some categories and products. Additionaly to the root category of the new website, you have to add subcategories displayed at the front page of the new store. To do so, go to Catalog -> Manage categories and choose the root category of the new website in the left category tree. Press "Add subcategory" and fill in the new category data. Set "Is Active -> Yes" and "Is anchor -> Yes" again and save. Now, the new category is displayed at the front page. But it doesn't contain any products.
  16. To add some products, you go to Catalog -> Manage products. There, you choose the product you want to associate with the new website. Under Product information -> Websites, you add the new website by selecting it and save. Now, you go to the category site (Catalog -> Manage Categories) where you choose the category you want to associate the product with. Under "Category products", you choose Page "Any" and search for the product, select it and save. Then, the product is displayed under the new category of your new store. If this doesn't work, make sure that the product is available and its stock number is greater than 0.

Keine Kommentare:

Kommentar veröffentlichen