Benutzer-Werkzeuge

Webseiten-Werkzeuge


Seitenleiste

3D

INTERN

ADOBE

ARDUINO

BITBUCKET

DOCKER

C4D

GIT

HTML

IPHONE

JAVASCRIPT

JTL-SHOP

LARAVEL

MAGENTO2

MYSQL

PHP

PLESK

PROCESSING

PYTHON

SUITECRM

SEO

TRYTON

THUNDERBIRD / ICEDOVE / FossaMail

TYPO3

TYPO3: BACKEND

TYPO3: TYPOSCRIPT

UNIX

VLC

VVVV

WINDOWS

WINDOWS 10

WORDPRESS

XAMPP

XT:C 4 (Veyton)

magento2:first-steps-installing-on-xampp

magento2: first-steps: Installing on XAMPP

Prereqs:

  1. composer and git installed in PATH
  2. account on magento.com and github.com and the credentials at hand (github-auth-token)
  3. meet the required specs of magento2 (should be okay in recent xampp)
  4. enable extension=php_intl.dll in php.ini

Clone Repo and Run Composer install

Note: i am using git bash so the paths are /c/ instead of c:\ as it runs a unix shell or cygwin

$ cd /c/xampp/htdocs
$ git clone https://github.com/magento/magento2-community-edition.git magento2-test
$ cd magento2-test
$ composer install 

Composer installer asks for auth data for magento.com and github.com and takes a while..

Install magento using magento-cli

Prereqs:

  1. have an empty db ready, eg. magento2_test

Run the cli installer

$ ./bin/magento setup:install --db-name="magento2_test" --db-user="MYDBUSER" --db-passwort="MYDBPASS"
 --admin-firstname="MYFIRSTNAME" --admin-lastname="MYLASTMANE" --admin-email="MYADMINEMAIL" --admi
n-password="MYADMINPASS" --admin-user="MYADMINUSER"

take note of the admin url (you can review/change it in etc/env.php)

Run the asset build script

 $ ./bin/magento setup:static-content:deploy

this will also take a while

Well, and off you go

Other handy notes on magento2-CLI

$ ./bin/magento indexer:reindex
$ ./bin/magento cron:run
magento2/first-steps-installing-on-xampp.txt · Zuletzt geändert: 2015/11/19 01:08 von admin