Neuigkeiten
  • Die modified eCommerce Shopsoftware ist kostenlos, aber nicht umsonst.
    Spenden
  • Damit wir die modified eCommerce Shopsoftware auch zukünftig kostenlos anbieten können:
    Spenden
  • Thema: Testshop Verlinkung

    jupp

    • Frisch an Board
    • Beiträge: 77
    • Geschlecht:
    Testshop Verlinkung
    am: 17. November 2017, 07:42:19
    Hallo,

    ich habe mir einen Testshop eingerichtet der in einem Unterordner https://www.example.com/testshop/ liegt. Habe Pfade in der configure.php alle angepasst und die Datenbank eingespielt. Der Testshop funktioniert bis auf die Verlinkungen einwandfrei. Wenn ich mit der Maus über die Kategorie gehe, wird der richtige Pfad also https://www.example.com/testshop/unterkategorie/ in der unteren Browserleiste angezeigt, wenn ich dann drauf klicke leitet mich der Browser auf https://www.example.com/unterkategorie/ um. Cache u. Templatecache habe ich geleert. Im Admin ist das nicht so, da kann ich im Testshop alles perfekt erreichen. Was habe ich übersehen?

    Linkback: https://www.modified-shop.org/forum/index.php?topic=38252.0

    awids

    • Experte
    • Beiträge: 3.803
    • Geschlecht:
    Re: Testshop Verlinkung
    Antwort #1 am: 17. November 2017, 08:11:24
    .htaccess: RewriteBase

    jupp

    • Frisch an Board
    • Beiträge: 77
    • Geschlecht:
    Re: Testshop Verlinkung
    Antwort #2 am: 17. November 2017, 13:34:33
    gut Idee, aber will irgdendwie auch nicht. Habe folgende Optionen versucht:

    Code: PHP  [Auswählen]
    RewriteEngine On
    RewriteCond %{HTTP_HOST} example.com/$ [NC]
    RewriteCond %{HTTP_HOST} !folder1
    RewriteRule ^(.*)$ https://www.example.com/testshop/$1 [R=301,L]

    RewriteEngine On
    RewriteCond %{HTTP_HOST} !^www.example.com$
    RewriteRule ^(.*)$ www.example.com/testshop/$1 [L,R=301]

    RewriteEngine On
    RewriteRule ^example.com$ www.example.com/testshop [R=301,L]

    web28

    • modified Team
    • Beiträge: 9.404
    Re: Testshop Verlinkung
    Antwort #3 am: 17. November 2017, 14:05:04
    Code: PHP  [Auswählen]
      ##-- EXAMPLE: If your shop is located at "http://www.yourdomain.com/shop",
     ##-- set the following line like e.g.: RewriteBase /shop/
     RewriteBase /

    Das muss angepasst werden.

    Gruss Web28

    jupp

    • Frisch an Board
    • Beiträge: 77
    • Geschlecht:
    Re: Testshop Verlinkung
    Antwort #4 am: 17. November 2017, 18:42:26
    Hi,

    gut erster Fortschritt ;-) jetzt bleibt die URL in der Adressenzeile richtig stehen, aber der Browser bleibt leer mit der Meldung: www.example.com hat Sie zu oft weitergeleitet.

    jupp

    • Frisch an Board
    • Beiträge: 77
    • Geschlecht:
    Re: Testshop Verlinkung
    Antwort #5 am: 18. November 2017, 07:46:50
    Hallo,

    kann jemand den Fehler erkennen? Hier die configure.php und .htaccess

    configure.php

    Code: PHP  [Auswählen]
    <?php
    /* --------------------------------------------------------------
       $Id: configure.php 10303 2016-09-27 09:51:16Z web28 $

       modified eCommerce Shopsoftware
       http://www.modified-shop.org

       Copyright (c) 2009 - 2013 [www.modified-shop.org]
       --------------------------------------------------------------
       based on:
       (c) 2000-2001 The Exchange Project  (earlier name of osCommerce)
       (c) 2002-2003 osCommerce (configure.php,v 1.13 2003/02/10); www.oscommerce.com
       (c) 2003 XT-Commerce (configure.php)

       Released under the GNU General Public License
       --------------------------------------------------------------*/


      // Define the webserver and path parameters
      // * DIR_FS_* = Filesystem directories (local/physical)
      // * DIR_WS_* = Webserver directories (virtual/URL)

      // global defines
      define('DIR_FS_DOCUMENT_ROOT', '/var/www/vhosts/name.xyz.hoster.de/example.com/testshop/'); // absolute path required
      define('DIR_WS_CATALOG', '/'); // relative path required
      define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT);

      // define our database connection
      define('DB_MYSQL_TYPE', 'mysql'); // define mysql type set to 'mysql' or 'mysqli'
      define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers
      define('DB_SERVER_USERNAME', 'username');
      define('DB_SERVER_PASSWORD', 'passwort');
      define('DB_DATABASE', 'name');
      define('DB_SERVER_CHARSET', 'latin1'); // set db charset 'utf8' or 'latin1'
      define('USE_PCONNECT', 'false'); // use persistent connections?

      if (DB_DATABASE != '') {
        // auto include
        require_once (DIR_FS_CATALOG.'inc/auto_include.inc.php');

        foreach(auto_include(DIR_FS_CATALOG.'includes/extra/configure/','php') as $file) require_once ($file);
      }

      // server
      defined('HTTP_SERVER') or define('HTTP_SERVER', 'https://www.example.com/testshop'); // eg, http://localhost - should not be empty for productive servers
      defined('HTTPS_SERVER') or define('HTTPS_SERVER', 'https://www.example.com/testshop'); // eg, https://localhost - should not be empty for productive servers

      // secure SSL
      defined('ENABLE_SSL') or define('ENABLE_SSL', true); // secure webserver for checkout procedure?
      defined('USE_SSL_PROXY') or define('USE_SSL_PROXY', false); // using SSL proxy?

      // session handling
      defined('STORE_SESSIONS') or define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'

      if (DB_DATABASE != '') {
        // set admin directory DIR_ADMIN
        require_once(DIR_FS_CATALOG.'inc/set_admin_directory.inc.php');

        // include standard settings
        require(DIR_FS_CATALOG.(defined('RUN_MODE_ADMIN')? DIR_ADMIN : '').'includes/paths.php');
      }

    ?>

    .htaccess

    Code: PHP  [Auswählen]
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    </IfModule>

    ##-- $Id: .htaccess 3209 2012-07-12 11:51:11Z gtb-modified $

    ##-- Default charset
    #AddDefaultCharset UTF-8
    AddDefaultCharset ISO-8859-15

    ##-- Disable the server signature
    ServerSignature Off

    ##-- Turn off ETags in HTTP-header (use both directives)
    <IfModule mod_headers.c>
      Header unset ETag
    </IfModule>
    FileETag None

    ##-- When caching of gzipped JS and CSS files is used, enable this setting
    #<IfModule mod_headers.c>
    #  Header set Vary Accept-Encoding
    #</IfModule>

    ##-- when using Provider 1&1 set the following lines to activate PHP5
    #AddType x-mapp-php5 .php
    #AddHandler x-mapp-php5 .php

    # Disable directory browsing (disabled by default as this causes problems on some servers)
    #Options All -Indexes

    ##-- Enable the compression for any type of content
    #<IfModule mod_deflate.c>
    #  <FilesMatch "\\.(js|css|html|htm|php|xml|jpg|jpeg|png|gif)$">
    #    SetOutputFilter DEFLATE
    #  </FilesMatch>
    #</IfModule>

    ##-- Customization of HTTP request and response headers
    <IfModule mod_headers.c>
      <FilesMatch "\\.(ico|jpe?g|png|gif|swf|flv)$">
        Header set Cache-Control "max-age=2592000, public"
      </FilesMatch>
      <FilesMatch "\\.(css)$">
        Header set Cache-Control "max-age=604800, public"
      </FilesMatch>
      <FilesMatch "\\.(js)$">
        Header set Cache-Control "max-age=216000, private"
      </FilesMatch>
      <FilesMatch "\\.(xml|txt)$">
        Header set Cache-Control "max-age=216000, public, must-revalidate"
      </FilesMatch>
      <FilesMatch "\\.(html|htm|php)$">
        Header set Cache-Control "max-age=1, private, must-revalidate"
      </FilesMatch>
    </IfModule>

    ##-- Generation of Expires and Cache-Control HTTP headers
    <IfModule mod_expires.c>
      ExpiresActive On
      ExpiresDefault "access plus 1 seconds"
      ExpiresByType image/gif "access plus 2592000 seconds"
      ExpiresByType image/jpeg "access plus 2592000 seconds"
      ExpiresByType image/png "access plus 2592000 seconds"
      ExpiresByType text/html "access plus 1 seconds"
      ExpiresByType text/css "access plus 604800 seconds"
      ExpiresByType text/javascript "access plus 216000 seconds"
      ExpiresByType application/x-javascript "access plus 216000 seconds"
    </IfModule>

    ##-- Configure php_flags if necessary
    ##-- BEGIN - use IfModule clause if PHP runs in CGI mode, otherwise just uncomment the lines with php_flag...
    #<IfModule mod_php.c>

      ##-- Warn when arguments are passed by reference at function call time (from PHP5 allow_call_time_pass_reference is deprecated)
     #php_flag allow_call_time_pass_reference on

      ##-- Disable transparent sid support PHP-default is off (XTC Session only on first visit)
     #php_flag session.use_trans_sid off

      ##-- set suhosin flags because of errors with attributes (for webhosters with suhosin hardening patch enabled)
     #php_value suhosin.post.max_array_depth 0
     #php_value suhosin.post.max_array_index_length 0
     #php_value suhosin.post.max_vars 0
     #php_value suhosin.request.max_array_depth 0
     #php_value suhosin.request.max_array_index_length 0
     #php_value suhosin.request.max_vars 0

      ##-- set suhosin flags to have unencrypted session data, affecting "whos_online" & "shopping cart" (for webhosters with suhosin hardening patch enabled)patch enabled
     #php_value suhosin.session.encrypt Off
     #php_value suhosin.session.cryptkey ''

    ##-- END - use IfModule clause if PHP runs in CGI mode, otherwise just uncomment the lines with php_flag...
    #</IfModule>

    ##-- Redirect error pages to Sitemap
    ##-- set the correct Path to ErrorDocument
    ErrorDocument 400 /sitemap.html?error=400
    ErrorDocument 401 /sitemap.html?error=401
    ErrorDocument 402 /sitemap.html?error=402
    ErrorDocument 403 /sitemap.html?error=403
    ErrorDocument 404 /sitemap.html?error=404
    ErrorDocument 500 /sitemap.html?error=500

    ##-----------------------------------------
    ##- SEO Shopstat Modul (Hartmut Koenig)
    ##-----------------------------------------
    <IfModule mod_rewrite.c>
      ##-- Initialize and enable rewrite engine
     ##-- Documentation http://httpd.apache.org/docs/misc/rewriteguide.html
     RewriteEngine On

      ##-- EXAMPLE: If your shop is located at "https://www.your.com/shop",
     ##-- set the following line like e.g.: RewriteBase /shop/
     RewriteBase /testshop/

    ##-- Wartung der Website - nur definierte IPs haben Zugriff auf den Shop
    ##-- xyz GmbH
    #RewriteCond %{REMOTE_ADDR} !^xxx.xxx.xxx.xxx$
    #RewriteCond %{REMOTE_ADDR} !^xx.xxx.xx.xx$
    ##-- xyz
    #RewriteCond %{REMOTE_ADDR} !^xx.xx.xxx.xxx$
    #RewriteRule .* wartung.php

      ##-- Use canonical URLs
     ##-- redirect to www-, when www is missing and no sub given and not using an ssl-proxy
     ##-- HostEurope
     #RewriteCond %{HTTP:X-Forwarded-Server}   !^ssl\.webpack\.de$ [NC]
     ##-- 1und1
     #RewriteCond %{HTTP:X-Forwarded-Server}   !^ssl\.kundenserver\.de$ [NC]
     ##-- FACTORY
     #RewriteCond %{HTTP:X-Forwarded-Server}   !^sslsites\.de$ [NC]
     ##-- All-Inkl
     #RewriteCond %{HTTP:X-Forwarded-Server}   !^ssl-account\.com$ [NC]
     ##-- Strato
     #RewriteCond %{HTTP:X-Forwarded-Server}   !^www\.ssl-id\.de$ [NC]

      RewriteCond %{HTTP_HOST}                 !^www\.(.*) [NC]
      RewriteCond %{HTTP_HOST}                 !^(.*)\.(.*)\.(.*) [NC]
      RewriteCond %{HTTP_HOST}                 !^localhost(.*)$ [NC]
      RewriteRule ^(.*)                        https://www.%{HTTP_HOST}/$1 [R=301,L]

      ##-- Sitemap
     RewriteRule ^sitemap(.*)\.html$ shop_content.php?coID=8 [QSA,L]

      ##----------------------------------------------------------------------------------
     ##-- When working with SEO-Urls you can decide, whether to use a colon ":" or a dash "-" symbol
     ##-- (Windows Servers might have problems with colon as delimiter!)
     ##-- Change the delimiter symbol also in file "/inc/shopstat_functions.inc.php"
     ##----------------------------------------------------------------------------------

      ##-- Use colon delimiter ":" for SEO-URLS (default setting)
     ##-- Categories (:::)
     RewriteCond %{REQUEST_URI} (.*):::([_0-9]+):([_0-9]+)\.html$
      RewriteRule (.*):::([_0-9]+):([_0-9]+)\.html$ index.php?cPath=$2&page=$3 [QSA,L]
      RewriteCond %{REQUEST_URI} (.*):::([_0-9]+)\.html$
      RewriteRule (.*):::([_0-9]+)\.html$ index.php?cPath=$2 [QSA,L]

      ##-- Products (::)
     RewriteRule (.*)::(.+)\.html$ product_info.php?products_id=$2 [QSA,L]

      ##-- Content (:_:)
     RewriteRule (.*):_:([0-9]+)\.html$ shop_content.php?coID=$2 [QSA,L]

      ##-- Manufacturers (:.:)
     RewriteCond %{REQUEST_URI} (.*):.:([_0-9]+):([_0-9]+)\.html$
      RewriteRule (.*):.:([_0-9]+):([_0-9]+)\.html$ index.php?manufacturers_id=$2&page=$3 [QSA,L]
      RewriteCond %{REQUEST_URI} (.*):.:([_0-9]+)\.html$
      RewriteRule (.*):.:([0-9]+)\.html$ index.php?manufacturers_id=$2 [QSA,L]

      ##-- Use dash delimiter "-" for SEO-URLS
     ##-- Categories (---)
     #RewriteCond %{REQUEST_URI} (.*)---([_0-9]+)-([_0-9]+)\.html$
     #RewriteRule (.*)---([_0-9]+)-([_0-9]+)\.html$ index.php?cPath=$2&page=$3 [QSA,L]
     #RewriteCond %{REQUEST_URI} (.*)---([_0-9]+)\.html$
     #RewriteRule (.*)---([_0-9]+)\.html$ index.php?cPath=$2 [QSA,L]

      ##-- Products (--)
     #RewriteRule (.*)--(.+)\.html$ product_info.php?products_id=$2 [QSA,L]

      ##-- Content (-_-)
     #RewriteRule (.*)-_-([0-9]+)\.html$ shop_content.php?coID=$2 [QSA,L]

      ##-- Manufacturers (-.-)
     #RewriteCond %{REQUEST_URI} (.*)-.-([_0-9]+)-([_0-9]+)\.html$
     #RewriteRule (.*)-.-([_0-9]+)-([_0-9]+)\.html$ index.php?manufacturers_id=$2&page=$3 [QSA,L]
     #RewriteCond %{REQUEST_URI} (.*)-.-([_0-9]+)\.html$
     #RewriteRule (.*)-.-([0-9]+)\.html$ index.php?manufacturers_id=$2 [QSA,L]
    </IfModule>

    #php_value max_input_vars 8000

    # Datei zum Regeln von IP-Bereichen
    Order deny,allow
    Deny from anonymouse.org

    #====================================================================================================
    # Badbots blockieren [Letzte Aktualisierung: 19.10.2014]
    #====================================================================================================
    RewriteCond %{HTTP_USER_AGENT} ^$                                                                [OR]
    RewriteCond %{HTTP_USER_AGENT} compatible;.?MSIE.?6.0;.?Windows.?NT.?5.1                         [OR]
    RewriteCond %{HTTP_USER_AGENT} updown_tester                                                     [OR]
    RewriteCond %{HTTP_USER_AGENT} (spbot|OpenLinkProfiler)                                          [OR]
    RewriteCond %{HTTP_USER_AGENT} (Squider|Squider/0.01)$                                           [OR]
    RewriteCond %{HTTP_USER_AGENT} (memorybot|memoryBot)                                             [OR]
    RewriteCond %{HTTP_USER_AGENT} ^magpie-crawler/[0-9]                                             [OR]
    RewriteCond %{HTTP_USER_AGENT} SiteExplorer/[0-9]                                                [OR]
    RewriteCond %{HTTP_USER_AGENT} Spiderlytics/[0-9]                                                [OR]
    RewriteCond %{HTTP_USER_AGENT} ProCogSEOBot/[0-9]                                                [OR]
    RewriteCond %{HTTP_USER_AGENT} ^libwww-perl/[0-9]                                                [OR]
    RewriteCond %{HTTP_USER_AGENT} TurnitinBot/[0-9]                                                 [OR]
    RewriteCond %{HTTP_USER_AGENT} meanpathbot/[0-9]                                                 [OR]
    RewriteCond %{HTTP_USER_AGENT} SemrushBot/[0-9]                                                  [OR]
    RewriteCond %{HTTP_USER_AGENT} Infohelfer/[0-9]                                                  [OR]
    RewriteCond %{HTTP_USER_AGENT} CompSpyBot/[0-9]                                                  [OR]
    RewriteCond %{HTTP_USER_AGENT} AhrefsBot/[0-9]                                                   [OR]
    RewriteCond %{HTTP_USER_AGENT} CareerBot/[0-9]                                                   [OR]
    RewriteCond %{HTTP_USER_AGENT} Moreover/[0-9]                                                    [OR]
    RewriteCond %{HTTP_USER_AGENT} MJ12bot/v[0-9]                                                    [OR]
    RewriteCond %{HTTP_USER_AGENT} BLEXBot/[0-9]                                                     [OR]
    RewriteCond %{HTTP_USER_AGENT} Ezooms/[0-9]                                                      [OR]
    RewriteCond %{HTTP_USER_AGENT} Abonti/[0-9]                                                      [OR]
    RewriteCond %{HTTP_USER_AGENT} DCPbot/[0-9]                                                      [OR]
    RewriteCond %{HTTP_USER_AGENT} ^Java/[0-9]                                                       [OR]
    RewriteCond %{HTTP_USER_AGENT} oBot/[0-9]                                                        [OR]
    RewriteCond %{HTTP_USER_AGENT} ^BOT/[0-9]                                                        [OR]
    RewriteCond %{HTTP_USER_AGENT} SearchmetricsBot                                                  [OR]
    RewriteCond %{HTTP_USER_AGENT} OpenindexSpider                                                   [OR]
    RewriteCond %{HTTP_USER_AGENT} BacklinkCrawler                                                   [OR]
    RewriteCond %{HTTP_USER_AGENT} ^ssearch_bot                                                      [OR]
    RewriteCond %{HTTP_USER_AGENT} UnisterBot                                                        [OR]
    RewriteCond %{HTTP_USER_AGENT} 360Spider$                                                        [OR]
    RewriteCond %{HTTP_USER_AGENT} HubSpot\sWebcrawler$                                              [OR]
    RewriteCond %{HTTP_USER_AGENT} SISTRIX
    RewriteRule ^ - [F,L]

    karsta.de

    • Experte
    • Beiträge: 3.157
    Re: Testshop Verlinkung
    Antwort #6 am: 18. November 2017, 07:57:38
    In der .htaccess mußt du, wenn du suchmaschienenfreundliche URLs an hast, auch bei den Verlinkungen den Pfad 'testshop' mit angeben:

    Code: PHP  [Auswählen]
    ##-- Redirect error pages to Sitemap
    ##-- set the correct Path to ErrorDocument
    ErrorDocument 400 /testshop/sitemap.html?error=400
    ErrorDocument 401 /testshop/sitemap.html?error=401
    ErrorDocument 402 /testshop/sitemap.html?error=402
    ErrorDocument 403 /testshop/sitemap.html?error=403
    ErrorDocument 404 /testshop/sitemap.html?error=404
    ErrorDocument 500 /testshop/sitemap.html?error=500

    Code: PHP  [Auswählen]
      ##-- Use colon delimiter ":" for SEO-URLS (default setting)
     ##-- Categories (:::)
     RewriteCond %{REQUEST_URI} (.*):::([_0-9]+):([_0-9]+)\.html$
      RewriteRule (.*):::([_0-9]+):([_0-9]+)\.html$ testshop/index.php?cPath=$2&page=$3 [QSA,L]
      RewriteCond %{REQUEST_URI} (.*):::([_0-9]+)\.html$
      RewriteRule (.*):::([_0-9]+)\.html$ testshop/index.php?cPath=$2 [QSA,L]

      ##-- Products (::)
     RewriteRule (.*)::(.+)\.html$ testshop/product_info.php?products_id=$2 [QSA,L]

      ##-- Content (:_:)
     RewriteRule (.*):_:([0-9]+)\.html$ testshop/shop_content.php?coID=$2 [QSA,L]

      ##-- Manufacturers (:.:)
     RewriteCond %{REQUEST_URI} (.*):.:([_0-9]+):([_0-9]+)\.html$
      RewriteRule (.*):.:([_0-9]+):([_0-9]+)\.html$ testshop/index.php?manufacturers_id=$2&page=$3 [QSA,L]
      RewriteCond %{REQUEST_URI} (.*):.:([_0-9]+)\.html$
      RewriteRule (.*):.:([0-9]+)\.html$ testshop/index.php?manufacturers_id=$2 [QSA,L]

    --------------------------
    Und in der includes/configure.php

    muß in der Zeile 24 ebenfalls testshop stehen:

    Code: PHP  [Auswählen]
    define('DIR_WS_CATALOG', '/testshop/'); // relative path required

    BG kgd

    jupp

    • Frisch an Board
    • Beiträge: 77
    • Geschlecht:
    Re: Testshop Verlinkung
    Antwort #7 am: 18. November 2017, 09:41:18
    Hallo,

    jetzt habe ich 2 x testshop drinn, die URL sieht so aus https://www.example.com/testshop/testshop/seite:::44.html und das Layout ist ungeordnet bzw. weg.

    Grüße Jupp

    hpzeller

    • Experte
    • Beiträge: 4.129
    • Geschlecht:
    Re: Testshop Verlinkung
    Antwort #8 am: 18. November 2017, 09:46:20
    Hallo Jupp,

    in  'configure.php' folgenden Code

    Code: PHP  [Auswählen]
      defined('HTTP_SERVER') or define('HTTP_SERVER', 'https://www.example.com/testshop'); // eg, http://localhost - should not be empty for productive servers
      defined('HTTPS_SERVER') or define('HTTPS_SERVER', 'https://www.example.com/testshop'); // eg, https://localhost - should not be empty for productive servers

    ändern in

    Code: PHP  [Auswählen]
      defined('HTTP_SERVER') or define('HTTP_SERVER', 'https://www.example.com'); // eg, http://localhost - should not be empty for productive servers
      defined('HTTPS_SERVER') or define('HTTPS_SERVER', 'https://www.example.com'); // eg, https://localhost - should not be empty for productive servers

    Also '/testshop' muss oben raus weil das Unterverzeichnis jetzt richtigerweise hier

    Code: PHP  [Auswählen]
    define('DIR_WS_CATALOG', '/testshop/'); // relative path required

    drin ist.

    Gruss
    Hanspeter

    jupp

    • Frisch an Board
    • Beiträge: 77
    • Geschlecht:
    Re: Testshop Verlinkung
    Antwort #9 am: 18. November 2017, 10:17:18
    Hallo,

    super, die Verlinkungen stimmen jetzt. Tut mir leid dass ich so nervig bin u. leider noch eine Meldung kommt! Jetzt wird bei den Unterseiten folgendes ausgegeben: ,,Sitemap Fehler 404: Die gesuchte Seite wurde nicht gefunden!"

    Grüße Jupp

    jupp

    • Frisch an Board
    • Beiträge: 77
    • Geschlecht:
    Re: Testshop Verlinkung
    Antwort #10 am: 18. November 2017, 12:26:32
    ist es vielleicht einfacher den Testshop auf einer Subdomain zu installieren?

    Grüße Jupp

    jupp

    • Frisch an Board
    • Beiträge: 77
    • Geschlecht:
    Re: Testshop Verlinkung
    Antwort #11 am: 18. November 2017, 13:09:55
    Hallo,

    habe jetzt den Testshop auf einer Subdomain installiert. Da scheint im Frontend alles zu funktionieren, nur komme ich nicht in den Adminbereich, es ist echt zum verrückt werden.

    Grüße Jupp

    jupp

    • Frisch an Board
    • Beiträge: 77
    • Geschlecht:
    Re: Testshop Verlinkung
    Antwort #12 am: 18. November 2017, 17:24:14
    mit der Subdomain klapp es jetzt. Vielen Dank an alle die geholfen haben!

    Grüße Jupp
    7 Antworten
    2541 Aufrufe
    28. November 2017, 16:22:41 von webald
    5 Antworten
    4365 Aufrufe
    12. Januar 2013, 15:38:47 von Jim
    3 Antworten
    2581 Aufrufe
    03. Februar 2017, 13:57:47 von Bonsai
    5 Antworten
    5610 Aufrufe
    16. Dezember 2011, 16:48:45 von Tomcraft