Installationsanleitung für das responsive Standard-Template


  1. Alle Dateien aus dem Ordner /new_files/ ins Shoproot kopieren - es werden hierbei KEINE Dateien überschrieben.
    (Schritt entfällt bei Installation via MMLC.)
  2. Optional, falls man einen RSS-Feed anbieten möchte: Alle Dateien aus dem Ordner /rss_files/ ins Shoproot laden. Es werden auch hier keine Dateien überschrieben.
    (Bei Installation via MMLC ist der RSS-Feed fester Bestandteil.)
  3. Öffne: /templates/tpl_modified_responsive/index.html und suche nach allen Vorkommen von:
    {if isset($box_CATEGORIES)}{$box_CATEGORIES}{/if}
    Füge jeweils danach bzw. an gewünschter Position ein:
    {if isset($box_BLOGSYSTEM)}{$box_BLOGSYSTEM}{/if}
  4. Öffne: /templates/tpl_modified_responsive/source/boxes.php und suche nach:
    require_once(DIR_FS_BOXES . 'categories.php');
    Füge danach ein:
    require_once(DIR_FS_BOXES . 'blogsystem.php');
  5. Öffne: /templates/tpl_modified_responsive/css/general_bottom.css.php und suche nach:
    DIR_TMPL_CSS.'cookieconsent.css',
    Füge davor ein:
    DIR_TMPL_CSS.'blogsystem.css',
  6. Öffne: /templates/tpl_modified_responsive/module/main_content.html und füge ans Ende oder an gewünschter Position ein:
    {if isset($BLOGSYSTEM_START)}
        {$BLOGSYSTEM_START}
    {/if}
  7. Öffne: /.htaccess und suche:
    ##-- Categories (:::)
    Füge davor ein:
    ##-- Blog
    RewriteCond %{REQUEST_URI} (.*)::\.([0-9]+)-([0-9]+)\.html$
    RewriteRule (.*)::\.([0-9]+)-([0-9]+)\.html$ /blog.php?blog_cat=$2&blog_item=$3 [qsappend,L]
    RewriteCond %{REQUEST_URI} (.*):.\.([_0-9]+):([_0-9]+)\.html$
    RewriteRule (.*):\.\.([_0-9]+):([_0-9]+)\.html$ /blog.php?blog_cat=$2&page=$3 [qsappend,L]
    RewriteCond %{REQUEST_URI} (.*):\.\.([_0-9]+)\.html$
    RewriteRule (.*):\.\.([_0-9]+)\.html$ /blog.php?blog_cat=$2 [qsappend,L]
    Suche:
    ##-- Categories (---)
    Füge davor ein:
    ##-- Blog
    RewriteCond %{REQUEST_URI} (.*)--\.([0-9]+)-([0-9]+)\.html$
    RewriteRule (.*)--\.([0-9]+)-([0-9]+)\.html$ /blog.php?blog_cat=$2&blog_item=$3 [qsappend,L]
    RewriteCond %{REQUEST_URI} (.*)-.\.([_0-9]+)-([_0-9]+)\.html$
    RewriteRule (.*)-\.\.([_0-9]+)-([_0-9]+)\.html$ /blog.php?blog_cat=$2&page=$3 [qsappend,L]
    RewriteCond %{REQUEST_URI} (.*)-\.\.([_0-9]+)\.html$
    RewriteRule (.*)-\.\.([_0-9]+)\.html$ /blog.php?blog_cat=$2 [qsappend,L]
  8. Installiere das Modul im Backend unter MODULE > SYSTEM MODULE > modifiedBlogSystem
  9. Blog-Kategorien und Beiträge anlegen.