Magento via CLI installieren
Magento über Konsole installieren – wie schön!
Zuerst die neueste Magento-Version herunterladen:
wget http://www.magentocommerce.com/downloads/assets/1.9.1.1/magento-1.9.1.1.tar.gz
Entpacken:
tar xzfv magento-1.9.1.1.tar.gz
Schreibrechte setzen:
chmod -R o+w media var
chmod o+w app/etc
Installation starten:
php -f install.php -- \ --license_agreement_accepted "yes" \ --locale "de_DE" \ --timezone "Europe/Berlin" \ --default_currency "EUR" \ --db_host "mysql5.server.de" \ --db_name "db" \ --db_user "db" \ --db_pass "pw" \ --url "http://domain.de/" \ --use_rewrites "no" \ --use_secure "no" \ --secure_base_url "" \ --use_secure_admin "no" \ --admin_firstname "user"\ --admin_lastname "pw" \ --admin_email "mail@mail.de" \ --admin_username "username"\ --admin_password "password"
Sorry, the comment form is closed at this time.