Subshop im Unterordner?

Hallo,

ich möchte einen Testshop im Unterordner meines Shops anlegen.

Ich habe also im Shopverzeichnis einen Ordner “testshop” angelegt und dort eine Shopware-Installation (mit eigener Datenbank) durchgeführt.

Die Domains sind also http://www.meinshop.de (Hauptshop) und http://www.meinshop.de/testshop

Das Frontend ist erreichbar, beim Backend (http://www.meinshop.de/testshop/backend) werde ich immer auf das Backend vom Hauptshop weitergeleitet… 

Das Frontend ist zwar erreichbar, jedoch auch irgendwie kaputt. Wenn ich im Testshop etwas suche, lande ich plötzlich im Hauptshop…

wie mach ich das denn korrekt?

Ist es möglich den Testshop als Subshop im Hauptshop anzulegen und so beide via einem gemeinsamen Backend anzusteuern? Oder brauchen sie dafür die selbe DB?

 

gibts irgendwo eine Anleitung? Ich dachte ich hatte mal eine… find sie aber im Netzt nicht mehr =/

Wie sieht denn die .htaccess-Datei im testshop/-Ordner aus?

Timme Hosting - schnelles nginx-Hosting

www.timmehosting.de

@TimmeHosting‍

genauso wie die des Hauptshops.

 

<ifmodule mod_rewrite.c>
RewriteEngine on

#RewriteBase /

# Https config for the backend
#RewriteCond %{HTTPS} !=on
#RewriteRule backend/(.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteRule shopware.dll shopware.php
RewriteRule files/documents/.* engine [NC,L]
RewriteRule backend/media/(.*) media/$1 [NC,L]

RewriteCond %{REQUEST_URI} !(\/(engine|files|templates|themes|web)\/)
RewriteCond %{REQUEST_URI} !(\/media\/(archive|banner|image|music|pdf|unknown|video)\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ shopware.php [PT,L,QSA]

# Fix missing authorization-header on fast_cgi installations
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
</ifmodule><ifmodule mod_alias.c>
    # Block access to VCS directories
    RedirectMatch 404 /\\.(svn|git|hg|bzr|cvs)(/|$)

    # Restrict access to root folder files
    RedirectMatch 404 /(composer\.(json|lock)|README\.md|UPGRADE\.md)$
</ifmodule> # Staging environment #SetEnvIf Host "staging.test.shopware.in" SHOPWARE\_ENV=staging # Development environment #SetEnvIf Host "dev.shopware.in" SHOPWARE\_ENV=dev #SetEnv SHOPWARE\_ENV dev DirectoryIndex index.html DirectoryIndex index.php DirectoryIndex shopware.php # Disables download of configuration <files>
    # Deny all requests from Apache 2.4+.
    <ifmodule mod_authz_core.c>
          Require all denied
    </ifmodule>

    # Deny all requests from Apache 2.0-2.2.
    <ifmodule>
        Deny from all
    </ifmodule>
</files> # Enable gzip compression <ifmodule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/html text/xml text/plain text/css text/javascript application/javascript application/json application/font-woff application/font-woff2 image/svg+xml
</ifmodule><files>
    <ifmodule mod_expires.c>
        ExpiresActive on
        ExpiresDefault "access plus 1 month"
    </ifmodule>

    <ifmodule mod_headers.c>
        Header append Cache-Control "public"
        Header unset ETag
    </ifmodule>

    FileETag None
</files> # Match generated files like: # 1429684458\_t22\_s1.css # 1429684458\_t22\_s1.js <filesmatch>
    <ifmodule mod_headers.c>
        Header set Cache-Control "max-age=31536000, public"
    </ifmodule>

    <ifmodule mod_expires.c>
        ExpiresActive on
        ExpiresDefault "access plus 1 year"
    </ifmodule>
</filesmatch> # Disables auto directory index <ifmodule mod_autoindex.c>
   Options -Indexes
</ifmodule><ifmodule mod_negotiation.c>
    Options -MultiViews
</ifmodule><ifmodule mod_php5.c>
# php_value memory_limit 256M
# php_value max_execution_time 120
# php_value upload_max_filesize 20M
   php_flag phar.readonly off
   php_flag magic_quotes_gpc off
   php_flag session.auto_start off
   php_flag suhosin.session.cryptua off
   php_flag zend.ze1_compatibility_mode off
   php_value always_populate_raw_post_data -1
</ifmodule> # AddType x-mapp-php5 .php # AddHandler x-mapp-php5 .php <ifmodule mod_headers.c>
    Header append X-Frame-Options SAMEORIGIN
</ifmodule>

Du mußt die Zeile

 #RewriteBase /

einkommentieren und den Pfad entsprechend für den Unterordner anpassen (RewriteBase /testshop/).

Timme Hosting - schnelles nginx-Hosting

www.timmehosting.de

ok danke werd ich bei Gelegenheit mal testen

Hallo Zusammen,

ich bin “blutiger” Anfänger was Shopware angeht.
Ist ein Unterordner oder eine Subdomäne für ein Test-Shop besser?

Wer kann da eine eindeutige Aussage, mit Vor- und Nachteile treffen?
 

Ein Unterordner hat den Vorteil, dass die lizensierten Plug-Ins lauffähig sind.

Ist ein Unterordner oder eine Subdomäne für ein Test-Shop besser?

Unterordner

Bei Sub-Domains würde es sonst Probleme bei Plugins geben. Bei Unterordner nicht.

 

Vielen Dank für die Antworten.

Was ist aber, wenn ich ein Shop-Update testen will?
Werden da beide Instanzen aktualisiert oder kann ich jeden Shop einzeln aktualisieren?

Nein, da wo das Update ausgelöst wird, wird auch das Update durchgeführt.

Okay,

vielen Dank R4M. Thumb-Up