|
Hallo Forumsteilnehmer
Wie bekommt man den Shop auf einem lokalen System zum Laufen? Hatte Magento bei der ersten Installation halbwegs zum Laufen gebracht, aber beim zweiten Anlauf geht nichts mehr.
Das Problem ist im englischsprachigen Forum bereits aufgetaucht, aber offensichtlich noch nicht gelöst worden.
http://www.magentocommerce.com/boards/viewthread/1932
‘http://localhost:888/magento/admin/dashboard/
Magento Admin zeigt nur grüne Kopfleiste
‘http://localhost:8888/magento/
Store Front ist sichtbar, aber die Links führen entweder ins Leere oder zu 404 “Whoops, our bad… “
MAMP MySQL
Host: localhost
[Port: 8889]
Benutzer: root
Kennwort: root
Database Connection
Host: localhost
Database Name: magento
User Name: root
User Password: root
Default store
Host: localhost
Base Path: /magento/
Protocol: http
Port: 8888
Secure Connection
Secure Host: localhost
Secure Base Path: /magento/
Secure Protocol: http
Secure Port: 8888
.htaccess im Rootverzeichnis von /magento/
<IfModule mod_php5.c> php_flag magic_quotes_gpc off php_flag short_open_tag on php_flag display_errors on php_value memory_limit 32M </IfModule>
DirectoryIndex index.php
RewriteEngine on
RewriteBase /magento/
RewriteCond %{REQUEST_URI} !^/media/ RewriteCond %{REQUEST_URI} !^/skin/ RewriteCond %{REQUEST_URI} !^/js/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php
|