Compare commits

...

No commits in common. "3.0.2.072" and "rel_ionCube_PHP56-70" have entirely different histories.

106 changed files with 2954 additions and 1694 deletions

View File

@ -15,7 +15,7 @@
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
"homepage": "http://www.d3data.de",
"homepage": "https://www.d3data.de",
"role": "Owner"
}
],
@ -30,8 +30,9 @@
}
},
"require": {
"php": "7.1 - 7.4", "ext-ionCube-Loader": "*",
"oxid-esales/oxideshop-ce": "6.0 - 6.5",
"php": "5.6 - 7.0",
"ext-ionCube-Loader": "*",
"oxid-esales/oxideshop-ce": "6.0 - 6.7",
"d3/modcfg": "^5.3.0.0",
"ext-json": "*",
"ext-soap": "*",

View File

@ -2,6 +2,47 @@
title: Changelog
---
## 3.2.0.0 - 2022-06-15
### Added
- Nachbehandlung des Scores auf Basis der verwendeten Top Level Domain möglich
---
## 3.1.1.0 - 2021-06-21
### Added
- installierbar in OXID 6.2.3 und 6.2.4
### Changed
- Templateblöcke für einfachere Überladung eingefügt
- Scoreanfragen werden als Info zur einfacheren Nachvollziehbarkeit mitgeschrieben
### Fixed
- falscher Score Startwert in der Entscheidungsmatrix korrigiert
- verdrehte Score Ranges im Status 3 fĂĽr statistische Abfragen korrigiert
---
## 3.1.0.0 - 2021-03-12
### Added
- erforderliche Felder, die im Shop keine Pflichtfelder sind, werden an der zu prüfenden Zahlart zusätzlich abgefragt
- funktioniert fĂĽr alle Boniversum-Pflichtfelder
- wenn die Felder unabhängig vom Pflichtfeld schon ausgefüllt sind, erfolgt keine zusätzliche Abfrage
### Changed
- Templates fĂĽr Verwendung in Flow- und Wave-Theme aktualisiert
### Fixed
- Geburtsdatumauswahl zeigt komplette Monatsnamen anstelle der Ziffern
---
## 3.0.2.1 - 2020-10-16
### Changed
- Titellogo auf statischen Asset umgestellt
- Dokumentation aktualisiert
---
## 3.0.2.0 - 2020-04-08
### Added
- installierbar in OXID 6.2

View File

@ -1,9 +1,9 @@
{
"title": "<i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore",
"moduleversion": "3.0.2.0",
"moduleversion": "3.2.0.0",
"titledesc": "fĂĽr den Oxid eShop",
"author": "DÂł Data Development",
"moduledate": "08.04.2020",
"moduledate": "15.06.2022",
"editors": "",
"tagline": "",
"image": "",
@ -32,6 +32,7 @@
"powered_by": ""
},
"languages": {
"editions": "Editionen",
"installation": "Installation",
"changelog": "Changelog",
"support": "Support"
@ -63,6 +64,7 @@
"modulename" : "<i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore",
"menutitle" : "<i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore",
"modulefolder" : "bonimascore",
"metadataident" : "d3bonimascore",
"modcfgident" : "d3bonimascore",
"composerident" : "d3/bonimascore"
},

View File

@ -0,0 +1,19 @@
---
title: Editionen
---
Das Modul **{$modulename}** erhalten Sie in verschiedenen Editionen mit unterschiedlichem Funktionsumfang.
## Funktionsumfang
| | Standard-Edition | Premium-Edition |
|:------------------------------------------------------------------------:|:-----------------:|:-----------------:|
| nachgelagerte Bonitätsprüfung | X | X |
| Infotab am Adminkundenkonto | X | X |
| Prüfung der Bonität erst ab einem bestimmten Warenkorbwert | | X |
| Kunden und Kundengruppen können von der Prüfung ausgeschlossen werden | | X |
| kundenidividuelles Kreditlimit | | X |
| Zahlarten bei abweichender Lieferadresse verweigern | | X |
| GĂĽltigkeitsdauer einer PrĂĽfung festlegen | | X |
| Nachbehandlung des ermittelten Scores | | X |
| Kunden und Kundengruppen können von Nachbehandlung ausgeschlossen werden | | X |

View File

@ -3,11 +3,16 @@ title: Systemanforderungen
---
* PHP Version
* 5.6.x bis 7.3.x
* 5.6.x bis 7.4.x
* PHP Decoder
* installierter ionCube Loader
* Shopversionen / -editionen
* OXID eShop Community Edition (CE), Professional Edition (PE) oder Enterprise Edition (EE) in Compilation Version
* Shopeditionen
* OXID eShop Community Edition (CE)
* OXID eShop Professional Edition (PE)
* OXID eShop Enterprise Edition (EE)
* OXID eShop B2B Edition
* Shopversionen
* OXID eShop in Compilation Version
* 6.0.x
* 6.1.x
* 6.2.x
@ -17,6 +22,6 @@ title: Systemanforderungen
* D3 Modul-Connector ([kostenfrei bei D3 erhältlich](https://www.oxidmodule.com/connector/)) ab Version 5.3.0.0
* Installation via [Composer](https://getcomposer.org)
Beachten Sie, dass die Ihnen vorliegende Modulversion entsprechend fĂĽr **PHP 5.6**, **PHP 7.0**, **PHP 7.1**, **PHP 7.2** oder **PHP 7.3** sowie dem auf Ihrem Server vorhandenen Decoder (**ionCube Loader**) kompatibel ist. Im Zweifelsfall kontaktieren Sie uns und nennen den fĂĽr Ihren Shop genutzten Decoder und die PHP-Version.
Beachten Sie, dass die Ihnen vorliegende Modulversion entsprechend fĂĽr Ihre genutzte PHP-Version sowie dem auf Ihrem Server vorhandenen Decoder (**ionCube Loader**) kompatibel ist. Im Zweifelsfall kontaktieren Sie uns und nennen den fĂĽr Ihren Shop genutzten Decoder und die PHP-Version.
Kontrollieren Sie bitte auch, ob diese Modulversion fĂĽr die von Ihnen eingesetzte Shopedition (Professional Edition (PE) oder Enterprise Edition (EE)) ausgelegt ist.

View File

@ -2,10 +2,14 @@
title: Modul zur Installation hinzufĂĽgen
---
### **auf der Kommandozeile**
FĂĽhren Sie in der Konsole im Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses) diesen Befehl aus, um das Modul **{$modulename}** zur Installation hinzuzufĂĽgen:
```bash
php composer require {$composerident} --update-no-dev
php composer require {$composerident}:^{$moduleversion} --update-no-dev
```
> [!] Achten Sie darauf, dass Composer für die Installation die selbe PHP-Version verwendet, in der auch Ihr Shop ausgeführt wird. Sie erhalten sonst möglicherweise unpassende Modulpakete.
> [i] Benötigt Ihre Installation einen anderen Aufruf von Composer, ändern Sie den Befehl bitte entsprechend ab. Für weitere Optionen dieses Befehls lesen Sie bitte die [Dokumentation von Composer](https://getcomposer.org/doc/03-cli.md#require).

View File

@ -4,6 +4,7 @@ title: Verwendung eigener Themes
Das Modul ist fĂĽr die Verwendung mit den folgenden OXID-Themes vorbereitet:
* Wave
* Flow
Verwenden Sie in Ihrem Shop ein angepasstes Verzeichnis fĂĽr Ihre Templates (neues Theme oder CustomTheme), kopieren Sie die Templates und / oder die CSS-Dateien in die neuen Ordner.

View File

@ -2,6 +2,18 @@
title: Modul im Shop aktivieren
---
### **im Adminbereich**
Aktivieren Sie das Modul ĂĽber den Shopadmin unter [ Erweiterungen ] -> [ Module ]. Klicken Sie nach Auswahl von [ {$menutitle} ] auf den Button [ Aktivieren ].
> [!] **Enterprise Editon**: Achten Sie darauf, dass das Modul in weiteren Shops (Mall) ebenfalls aktiviert werden muss, um dessen Funktion dort auch zu nutzen.
### **oder auf der Kommandozeile**
Alternativ können Sie die Modulaktivierung auch auf der Kommandozeile (CLI) im Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses) durchführen.
```bash
./vendor/bin/oe-console oe:module:activate {$metadataident}
```
> [!] **Enterprise Edition**: Achten Sie darauf, dass das Modul in weiteren Shops (Mall) ebenfalls aktiviert werden muss, um dessen Funktion dort auch zu nutzen.
> [i] **Enterprise Edition**: Zur Aktivierung in einem bestimmten Shopmandanten verwenden Sie das `--shop-id`-Argument (`...oe-console --shop-id 1 oe:module...`)

View File

@ -2,10 +2,20 @@
title: Shopanpassungen installieren
---
### **im Adminbereich**
Direkt nach der Modulaktivierung startet der Assistent, der Sie durch die Shopanpassung führt. Darin können Sie verschiedene Optionen der Installation wählen.
Den Installationsassistenten finden Sie auch unter den MenĂĽpunkten [ Admin ] -> [ (D3) Module ] -> [ Modul-Connector ] -> [ Modulverwaltung ] -> [ Modulinstallation ].
Bei tiefgreifenden Ă„nderungen an Ihrem Shop (z.B. HinzufĂĽgen weiterer Sprachen oder Mandanten) rufen Sie den Installationsassistenten bitte erneut auf, um dann eventuell notwendige Nacharbeiten fĂĽr das Modul ausfĂĽhren zu lassen.
Möchten Sie die Änderungen manuell installieren, können Sie sich über diesen Assistenten ebenfalls eine Checkliste erstellen.
Möchten Sie die Änderungen manuell installieren, können Sie sich über diesen Assistenten ebenfalls eine Checkliste erstellen.
### **oder auf der Kommandozeile**
Der Installationsassistent steht Ihnen ebenfalls auf der Kommandozeile (CLI) zur VerfĂĽgung. FĂĽhren Sie diesen Befehl im Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses) aus:
```bash
./vendor/bin/d3modules_install
```

View File

@ -2,8 +2,20 @@
title: TMP-Ordner leeren
---
### **im Adminbereich**
Leeren Sie das Verzeichnis `tmp` ĂĽber [ Admin ] -> [ (D3) Module ] -> [ Modul-Connector ] -> [ TMP leeren ]. Markieren Sie [ komplett leeren ] und klicken auf [ TMP leeren ].
Sofern die Views nicht automatisch aktualisiert werden, fĂĽhren Sie dies noch durch.
> [i] Erfordert Ihre Installation eine andere Vorgehensweise zum Leeren des Caches oder zum Aktualisieren der Datenbank-Viewtabellen, fĂĽhren Sie diese bitte aus.
### **oder auf der Kommandozeile**
Alle TMP-leeren-Aktionen stehen Ihnen ebenfalls auf der Kommandozeile (CLI) zur VerfĂĽgung. FĂĽhren Sie diesen Befehl im Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses) aus:
```bash
./vendor/bin/d3cleartmp
```
> [i] Erfordert Ihre Installation eine andere Vorgehensweise zum Leeren des Caches oder zum Aktualisieren der Datenbank-Viewtabellen, fĂĽhren Sie diese bitte aus.
> [i] Beim Kommandozeilenaufruf werden Ihnen weitere Optionen gezeigt, mit denen Sie die Aktion gezielt steuern können.

View File

@ -2,6 +2,8 @@
title: LizenzschlĂĽssel eintragen
---
### **im Adminbereich**
Das Modul verwendet LizenzschlĂĽssel, um die Lizenzverwaltung fĂĽr Sie und auch fĂĽr uns einfacher zu gestalten. Hierbei haben Sie je nach Modul die Wahl zwischen einer kostenfreien Testlizenz und einer Lizenz fĂĽr den Einsatz im Livebetrieb.
Speziell **{$modulename}** wird in unterschiedlichen Editionen fĂĽr den Livebetrieb angeboten. Besuchen Sie unseren [Moduleshop](https://www.oxidmodule.com/), um mehr darĂĽber zu erfahren.

View File

@ -4,8 +4,13 @@ Title: Schnellstart per Composer
## Schnellstart per Composer
### **auf der Kommandozeile**
```bash
php composer require {$composerident} --update-no-dev
php composer require {$composerident}:^{$moduleversion} --update-no-dev
./vendor/bin/oe-console oe:module:activate {$metadataident}
./vendor/bin/d3modules_install
./vendor/bin/d3cleartmp
```
Detailliertere Angaben zur Installation entnehmen Sie bitte den folgenden Seiten.
Detailliertere Angaben zur Installation entnehmen Sie bitte den folgenden Seiten.

View File

@ -2,7 +2,7 @@
title: Wann kann ein Update ausgefĂĽhrt werden?
---
Die Updatenaweisungen können verwendet werden, wenn dieses Modul schon früher mit Hilfe von Composer installiert wurde.
Die Updateanweisungen können verwendet werden, wenn dieses Modul schon früher mit Hilfe von Composer installiert wurde.
Wurde die Installation bisher noch nicht durchgefĂĽhrt oder die Installation wurde **nicht** ĂĽber Composer
durchgefĂĽhrt (weil das Modul dies z.B. frĂĽher nicht unterstĂĽtzte), verwenden Sie bitte die Beschreibung unter [Neuinstallation](../020_Neuinstallation/_index.md).

View File

@ -2,4 +2,18 @@
title: Modul deaktivieren
---
Deaktivieren Sie das Modul ĂĽber den Shopadmin unter [ Erweiterungen ] -> [ Module ]. Klicken Sie nach Auswahl von [ {$menutitle} ] auf den Button [ Deaktivieren ].
### **im Adminbereich**
Deaktivieren Sie das Modul unter [ Erweiterungen ] -> [ Module ]. Klicken Sie nach Auswahl von [ {$menutitle} ] auf den Button [ Deaktivieren ].
### **oder auf der Kommandozeile**
Alternativ können Sie die Moduldeaktivierung auch über die Kommandozeile (CLI) im Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses) durchführen.
```bash
./vendor/bin/oe-console oe:module:deactivate {$metadataident}
```
> [!] **Enterprise Edition**: Achten Sie darauf, dass das Modul in allen weiteren Shops (Mall) ebenfalls deaktiviert werden muss.
> [i] **Enterprise Edition**: Zur Deaktivierung in einem bestimmten Shopmandanten verwenden Sie das `--shop-id`-Argument (`...oe-console --shop-id 1 oe:module...`)

View File

@ -1,16 +0,0 @@
---
title: Paketquelle entfernen
---
Durch einen Wechsel der Paketquelle ist die veraltete Angabe nicht mehr erforderlich. Um Konflikte zu vermeiden, sollte die alte Paketquelle entfernt werden. Haben Sie diese schon früher entfernt, können Sie diesen Schritt überspringen.
Starten Sie die Konsole Ihres Webservers und wechseln in das Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses). Senden Sie dort diesen Befehl ab:
```bash
php composer config --unset repositories.d3
php composer config --unset repositories.D3modules
```
> [!] Achten Sie darauf, dass die Installation ĂĽber Composer mit derselben PHP-Version erfolgt, in der auch Ihr Shop installiert ist. Sie erhalten sonst unpassende Modulpakete.
> [i] Benötigt Ihre Installation einen anderen Aufruf von Composer, ändern Sie den Befehl bitte entsprechend ab. Für weitere Optionen dieses Befehls lesen Sie bitte die [Dokumentation von Composer](https://getcomposer.org/doc/03-cli.md#require).

View File

@ -2,13 +2,17 @@
title: Dateien erneuern
---
### **auf der Kommandozeile**
Starten Sie die Konsole Ihres Webservers und wechseln in das Hauptverzeichnis Ihres
Shops (oberhalb des `source`- und `vendor`-Verzeichnisses). FĂĽhren Sie dort diesen Befehl aus:
```bash
php composer update {$composerident} --no-dev
php composer require {$composerident}:^{$moduleversion} --update-no-dev
```
> [!] Achten Sie darauf, dass die Installation ĂĽber Composer mit derselben PHP-Version erfolgt, in der auch Ihr Shop installiert ist. Sie erhalten sonst unpassende Modulpakete.
Im weiteren Ablauf werden Sie gefragt, ob die Moduldateien überschrieben werden sollen. Bestätigen Sie dies für den Eintrag `{$composerident}`.
> [!] Achten Sie darauf, dass Composer für die Installation die selbe PHP-Version verwendet, in der auch Ihr Shop ausgeführt wird. Sie erhalten sonst möglicherweise unpassende Modulpakete.
> [i] Benötigt Ihre Installation einen anderen Aufruf von Composer, ändern Sie den Befehl bitte entsprechend ab. Für weitere Optionen dieses Befehls lesen Sie bitte die [Dokumentation von Composer](https://getcomposer.org/doc/03-cli.md#require).

View File

@ -2,4 +2,18 @@
title: Modulinformationen aktualisieren
---
Wechseln Sie im Adminbereich zu [ Erweiterungen ] -> [ Module ]. Klicken Sie nach Auswahl von [ {$menutitle} ] auf den Button [ Aktivieren ].
### **im Adminbereich**
Wechseln Sie im Adminbereich zu [ Erweiterungen ] -> [ Module ]. Klicken Sie nach Auswahl von [ {$menutitle} ] auf den Button [ Aktivieren ].
### **oder auf der Kommandozeile**
Alternativ können Sie die Modulaktivierung auch über die Kommandozeile (CLI) im Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses) durchführen.
```bash
./vendor/bin/oe-console oe:module:activate {$metadataident}
```
> [!] **Enterprise Edition**: Achten Sie darauf, dass das Modul in weiteren Shops (Mall) ebenfalls aktiviert werden muss, um dessen Funktion dort auch zu nutzen.
> [i] **Enterprise Edition**: Zur Aktivierung in einem bestimmten Shopmandanten verwenden Sie das `--shop-id`-Argument (`...oe-console --shop-id 1 oe:module...`)

View File

@ -1,11 +1,21 @@
---
title: Shopanpassungen installierren
title: Shopanpassungen installieren
---
### **im Adminbereich**
Ob Shopanpassungen notwendig sind, ist von der Versionsänderung des Moduls abhängig.
Möglicherweise sehen Sie nach dem Neuaktivieren des Moduls den Installationsassistent, der Sie durch die Änderungen führt. Folgen Sie dann den einzelnen Schritten. Möchten Sie die Änderungen manuell installieren, können Sie sich über diesen Assistenten ebenfalls eine Checkliste erstellen.
Wird der Assistent nicht gezeigt (Sie sehen wieder die ModulĂĽbersicht), waren keine Anpassungen am Shop notwendig.
Ob erforderliche Updates ausgeführt werden sollen, können Sie jederzeit im Adminbereich unter [ (D3) Module ] -> [ Modul-Connector ] -> [ Modulverwaltung ] -> [ Modulinstallation ] prüfen.
Ob erforderliche Updates ausgeführt werden sollen, können Sie jederzeit im Adminbereich unter [ (D3) Module ] -> [ Modul-Connector ] -> [ Modulverwaltung ] -> [ Modulinstallation ] prüfen.
### **oder auf der Kommandozeile**
Der Installationsassistent steht Ihnen ebenfalls auf der Kommandozeile (CLI) zur VerfĂĽgung. FĂĽhren Sie diesen Befehl im Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses) aus:
```bash
./vendor/bin/d3modules_install
```

View File

@ -2,8 +2,20 @@
title: TMP-Ordner leeren
---
### **im Adminbereich**
Leeren Sie das Verzeichnis `tmp` ĂĽber [ Admin ] -> [ (D3) Module ] -> [ Modul-Connector ] -> [ TMP leeren ]. Markieren Sie [ komplett leeren ] und klicken auf [ TMP leeren ].
Sofern die Views nicht automatisch aktualisiert werden, fĂĽhren Sie dies noch durch.
> [i] Erfordert Ihre Installation eine andere Vorgehensweise zum Leeren des Caches oder zum Aktualisieren der Datenbank-Viewtabellen, fĂĽhren Sie diese bitte aus.
### **oder auf der Kommandozeile**
Alle TMP-leeren-Aktionen stehen Ihnen ebenfalls auf der Kommandozeile (CLI) zur VerfĂĽgung. FĂĽhren Sie diesen Befehl im Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses) aus:
```bash
./vendor/bin/d3cleartmp
```
> [i] Erfordert Ihre Installation eine andere Vorgehensweise zum Leeren des Caches oder zum Aktualisieren der Datenbank-Viewtabellen, fĂĽhren Sie diese bitte aus.
> [i] Beim Kommandozeilenaufruf werden Ihnen weitere Optionen gezeigt, mit denen Sie die Aktion gezielt steuern können.

View File

@ -2,4 +2,6 @@
title: LizenzschlĂĽssel aktualisieren
---
### **im Adminbereich**
Wird für die neue Modulversion ein aktualisierter Lizenzschlüssel benötigt, tragen Sie diesen im Adminbereich unter [ (D3) Module ] -> [ Modul-Connector ] -> [ Modulverwaltung ] ein. Klappen Sie dazu den Eintrag des jeweiligen Moduls aus und starten den Lizenzassistent.

View File

@ -2,5 +2,18 @@
title: Modul deaktivieren
---
Deaktivieren Sie das Modul **{$modulename}** ĂĽber den Shopadmin [ Erweiterungen ] -> [ Module ]. Klicken Sie nach Auswahl von [ {$menutitle} ] auf den Button [ Deaktivieren ].
### **im Adminbereich**
Deaktivieren Sie das Modul unter [ Erweiterungen ] -> [ Module ]. Klicken Sie nach Auswahl von [ {$menutitle} ] auf den Button [ Deaktivieren ].
### **oder auf der Kommandozeile**
Alternativ können Sie die Moduldeaktivierung auch über die Kommandozeile (CLI) im Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses) durchführen.
```bash
./vendor/bin/oe-console oe:module:deactivate {$metadataident}
```
> [!] **Enterprise Edition**: Achten Sie darauf, dass das Modul in allen weiteren Shops (Mall) ebenfalls deaktiviert werden muss.
> [i] **Enterprise Edition**: Zur Deaktivierung in einem bestimmten Shopmandanten verwenden Sie das `--shop-id`-Argument (`...oe-console --shop-id 1 oe:module...`)

View File

@ -2,12 +2,12 @@
title: Modul aus der Installation entfernen
---
### **auf der Kommandozeile**
Starten Sie die Konsole Ihres Webservers und wechseln in das Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses). FĂĽhren Sie Sie dort diesen Befehl aus:
```Bash
php composer remove {$composerident} --no-update
```
> [!] Achten Sie darauf, dass die Installation ĂĽber Composer mit derselben PHP-Version erfolgt, in der auch Ihr Shop installiert ist. Sie erhalten sonst unpassende Modulpakete.
> [i] Benötigt Ihre Installation einen anderen Aufruf von Composer, ändern Sie den Befehl bitte entsprechend ab. Für weitere Optionen dieses Befehls lesen Sie bitte die [Dokumentation von Composer](https://getcomposer.org/doc/03-cli.md#require).
> [i] Benötigt Ihre Installation einen anderen Aufruf von Composer, ändern Sie den Befehl bitte entsprechend ab. Für weitere Optionen dieses Befehls lesen Sie bitte die [Dokumentation von Composer](https://getcomposer.org/doc/03-cli.md#remove).

View File

@ -5,5 +5,5 @@ title: Dateien löschen
Löschen Sie den Ordner `{$modulefolder}` und seine enthaltenen Elemente aus dem Verzeichnis `source/modules/d3` Ihres Shops.
Bestätigen Sie anschließend im Shopadmin unter [ Erweiterungen ] -> [ Module ] -> [ Installierte Shop-Module ] die Nachricht:
> Es gibt registrierte Erweiterungen im eShop, deren Verzeichnis nicht vorhanden ist.
> Es gibt registrierte Erweiterungen im eShop, deren Verzeichnis nicht vorhanden ist.
> Möchten Sie alle Modulinformationen einschließlich Konfigurationseinstellungen und Blockinformationen für Templates löschen?

View File

@ -2,8 +2,20 @@
title: TMP-Ordner leeren
---
### **im Adminbereich**
Leeren Sie das Verzeichnis `tmp` ĂĽber [ Admin ] -> [ (D3) Module ] -> [ Modul-Connector ] -> [ TMP leeren ]. Markieren Sie [ komplett leeren ] und klicken auf [ TMP leeren ].
Sofern die Views nicht automatisch aktualisiert werden, fĂĽhren Sie dies noch durch.
> [i] Erfordert Ihre Installation eine andere Vorgehensweise zum Leeren des Caches oder zum Aktualisieren der Datenbank-Viewtabellen, fĂĽhren Sie diese bitte aus.
### **oder auf der Kommandozeile**
Alle TMP-leeren-Aktionen stehen Ihnen ebenfalls auf der Kommandozeile (CLI) zur VerfĂĽgung. FĂĽhren Sie diesen Befehl im Hauptverzeichnis Ihres Shops (oberhalb des `source`- und `vendor`-Verzeichnisses) aus:
```bash
./vendor/bin/d3cleartmp
```
> [i] Erfordert Ihre Installation eine andere Vorgehensweise zum Leeren des Caches oder zum Aktualisieren der Datenbank-Viewtabellen, fĂĽhren Sie diese bitte aus.
> [i] Beim Kommandozeilenaufruf werden Ihnen weitere Optionen gezeigt, mit denen Sie die Aktion gezielt steuern können.

View File

@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,23 +72,71 @@
<div class="Page__header">
<h1><a href="../changelog/Changelog.html">Changelog</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<h2 id="page_3-0-2-0-2020-04-08">3.0.2.0 - 2020-04-08</h2>
<h2 id="page_3-2-0-0-2022-06-15">3.2.0.0 - 2022-06-15</h2>
<h3 id="page_Added">Added</h3>
<ul>
<li>Nachbehandlung des Scores auf Basis der verwendeten Top Level Domain möglich</li>
</ul>
<hr />
<h2 id="page_3-1-1-0-2021-06-21">3.1.1.0 - 2021-06-21</h2>
<h3 id="page_Added-2">Added</h3>
<ul>
<li>installierbar in OXID 6.2.3 und 6.2.4</li>
</ul>
<h3 id="page_Changed">Changed</h3>
<ul>
<li>Templateblöcke für einfachere Überladung eingefügt</li>
<li>Scoreanfragen werden als Info zur einfacheren Nachvollziehbarkeit mitgeschrieben</li>
</ul>
<h3 id="page_Fixed">Fixed</h3>
<ul>
<li>falscher Score Startwert in der Entscheidungsmatrix korrigiert</li>
<li>verdrehte Score Ranges im Status 3 fĂĽr statistische Abfragen korrigiert</li>
</ul>
<hr />
<h2 id="page_3-1-0-0-2021-03-12">3.1.0.0 - 2021-03-12</h2>
<h3 id="page_Added-2">Added</h3>
<ul>
<li>erforderliche Felder, die im Shop keine Pflichtfelder sind, werden an der zu prüfenden Zahlart zusätzlich abgefragt
<ul>
<li>funktioniert fĂĽr alle Boniversum-Pflichtfelder</li>
<li>wenn die Felder unabhängig vom Pflichtfeld schon ausgefüllt sind, erfolgt keine zusätzliche Abfrage</li>
</ul>
</li>
</ul>
<h3 id="page_Changed-2">Changed</h3>
<ul>
<li>Templates fĂĽr Verwendung in Flow- und Wave-Theme aktualisiert</li>
</ul>
<h3 id="page_Fixed-2">Fixed</h3>
<ul>
<li>Geburtsdatumauswahl zeigt komplette Monatsnamen anstelle der Ziffern</li>
</ul>
<hr />
<h2 id="page_3-0-2-1-2020-10-16">3.0.2.1 - 2020-10-16</h2>
<h3 id="page_Changed-2">Changed</h3>
<ul>
<li>Titellogo auf statischen Asset umgestellt</li>
<li>Dokumentation aktualisiert</li>
</ul>
<hr />
<h2 id="page_3-0-2-0-2020-04-08">3.0.2.0 - 2020-04-08</h2>
<h3 id="page_Added-2">Added</h3>
<ul>
<li>installierbar in OXID 6.2</li>
</ul>
<hr />
<h2 id="page_3-0-1-0-2020-04-03">3.0.1.0 - 2020-04-03</h2>
<h3 id="page_Changed">Changed</h3>
<h3 id="page_Changed-2">Changed</h3>
<ul>
<li>Erweiterbarkeit verbessert fĂĽr RĂĽckleitung im Falle des nicht gesetzten Geburtstages</li>
<li>Dokumentation ergänzt</li>
</ul>
<h3 id="page_Fixed">Fixed</h3>
<h3 id="page_Fixed-2">Fixed</h3>
<ul>
<li>vermeidet Bonima-Check, wenn Bestellung im Admin geändert oder neu berechnet wird</li>
<li>GeburtstagsprĂĽfung bei nicht ladbarem Kundenkonto korrigiert</li>
@ -180,7 +228,7 @@
<nav>
<ul class="Pager">
<li class=Pager--prev><a href="../index.html">ZurĂĽck</a></li> <li class=Pager--next><a href="../installation/Installation.html">Weiter</a></li> </ul>
<li class=Pager--prev><a href="../index.html">ZurĂĽck</a></li> <li class=Pager--next><a href="../editions/Editionen.html">Weiter</a></li> </ul>
</nav>
</article>

View File

@ -0,0 +1,166 @@
<!DOCTYPE html>
<html class="no-js" lang="de">
<head>
<title>Editionen - BonimaScore</title>
<meta name="description" content="">
<meta name="author" content="DÂł Data Development">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="../themes/d3/img/favicon.png" type="image/x-icon">
<!-- Mobile -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Font -->
<!-- CSS -->
<link href='../themes/d3/css/theme-blue.min.css' rel='stylesheet' type='text/css'><link href='../themes/d3/css/d3.css' rel='stylesheet' type='text/css'>
<!-- Tipue Search -->
<link href="../tipuesearch/tipuesearch.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="../themes/d3/js/html5shiv-3.7.3.min.js"></script>
<![endif]-->
</head>
<body class=" ">
<div class="Columns content">
<aside class="Columns__left Collapsible">
<button type="button" class="Button Collapsible__trigger">
<span class="Collapsible__trigger__bar"></span>
<span class="Collapsible__trigger__bar"></span>
<span class="Collapsible__trigger__bar"></span>
</button>
<a class="Brand" href="../index.html"><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</a>
<div class="Search">
<svg class="Search__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 451 451">
<path d="M447.05 428l-109.6-109.6c29.4-33.8 47.2-77.9 47.2-126.1C384.65 86.2 298.35 0 192.35 0 86.25 0 .05 86.3.05 192.3s86.3 192.3 192.3 192.3c48.2 0 92.3-17.8 126.1-47.2L428.05 447c2.6 2.6 6.1 4 9.5 4s6.9-1.3 9.5-4c5.2-5.2 5.2-13.8 0-19zM26.95 192.3c0-91.2 74.2-165.3 165.3-165.3 91.2 0 165.3 74.2 165.3 165.3s-74.1 165.4-165.3 165.4c-91.1 0-165.3-74.2-165.3-165.4z"/>
</svg>
<input type="search" id="tipue_search_input" class="Search__field" placeholder="Suchen..." autocomplete="on"
results=25 autosave=text_search>
</div>
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../editions/Editionen.html">Editionen</a></li></ul>
<div class="Links">
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
<a href="https://www.oxidmodule.com/impressum" target="_blank">Impressum</a><br />
</div>
</div>
</aside>
<div class="Columns__right Columns__right--full">
<div class="Columns__right__content">
<div class="doc_content">
<article class="Page">
<div class="Page__header">
<h1><a href="../editions/Editionen.html">Editionen</a></h1>
<span class="ModifiedDate">
15.06.2022 </span>
</div>
<div class="s-content">
<p>Das Modul <strong><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</strong> erhalten Sie in verschiedenen Editionen mit unterschiedlichem Funktionsumfang.</p>
<h2 id="page_Funktionsumfang">Funktionsumfang</h2>
<table>
<thead>
<tr>
<th align="center"></th>
<th align="center">Standard-Edition</th>
<th align="center">Premium-Edition</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">nachgelagerte Bonitätsprüfung</td>
<td align="center">X</td>
<td align="center">X</td>
</tr>
<tr>
<td align="center">Infotab am Adminkundenkonto</td>
<td align="center">X</td>
<td align="center">X</td>
</tr>
<tr>
<td align="center">Prüfung der Bonität erst ab einem bestimmten Warenkorbwert</td>
<td align="center"></td>
<td align="center">X</td>
</tr>
<tr>
<td align="center">Kunden und Kundengruppen können von der Prüfung ausgeschlossen werden</td>
<td align="center"></td>
<td align="center">X</td>
</tr>
<tr>
<td align="center">kundenidividuelles Kreditlimit</td>
<td align="center"></td>
<td align="center">X</td>
</tr>
<tr>
<td align="center">Zahlarten bei abweichender Lieferadresse verweigern</td>
<td align="center"></td>
<td align="center">X</td>
</tr>
<tr>
<td align="center">GĂĽltigkeitsdauer einer PrĂĽfung festlegen</td>
<td align="center"></td>
<td align="center">X</td>
</tr>
<tr>
<td align="center">Nachbehandlung des ermittelten Scores</td>
<td align="center"></td>
<td align="center">X</td>
</tr>
<tr>
<td align="center">Kunden und Kundengruppen können von Nachbehandlung ausgeschlossen werden</td>
<td align="center"></td>
<td align="center">X</td>
</tr>
</tbody>
</table>
</div>
<nav>
<ul class="Pager">
<li class=Pager--prev><a href="../changelog/Changelog.html">ZurĂĽck</a></li> <li class=Pager--next><a href="../installation/Installation.html">Weiter</a></li> </ul>
</nav>
</article>
</div>
</div>
</div>
</div>
<!-- JS -->
<script src="../themes/d3/js/jquery-1.11.3.min.js"></script><script src="../themes/d3/js/highlight.pack.js"></script><script src="../themes/d3/js/daux.js"></script><script src="../themes/d3/js/fontawesome-all.js"></script>
<!-- Tipue Search -->
<script type="text/javascript" src="../tipuesearch/tipuesearch.js"></script>
<script>
window.onunload = function(){}; // force $(document).ready to be called on back/forward navigation in firefox
$(function() {
tipuesearch({
'base_url': '../'
});
});
</script>
</body>
</html>

View File

@ -48,14 +48,14 @@
<div class="details">
<div>Autor: DÂł Data Development</div> <div>Stand: 08.04.2020</div>
<div>Version: 3.0.2.0</div>
<div>Autor: DÂł Data Development</div> <div>Stand: 15.06.2022</div>
<div>Version: 3.2.0.0</div>
</div>
</div>
<div class="HomepageButtons">
<div class="Container">
<a href="installation/Installation.html" class="Button Button--primary Button--hero">Installation</a><a href="changelog/Changelog.html" class="Button Button--primary Button--hero">Changelog</a><a href="support/Hilfe-und-Support.html" class="Button Button--primary Button--hero">Support</a> </div>
<a href="editions/Editionen.html" class="Button Button--primary Button--hero">Editionen</a><a href="installation/Installation.html" class="Button Button--primary Button--hero">Installation</a><a href="changelog/Changelog.html" class="Button Button--primary Button--hero">Changelog</a><a href="support/Hilfe-und-Support.html" class="Button Button--primary Button--hero">Support</a> </div>
</div>
</div>
@ -77,7 +77,7 @@
<ul class="HomepageFooter__links">
<li><a href="https://www.oxidmodule.com" target="_blank">Shop</a></li>
<li><a href="https://blog.oxidmodule.com" target="_blank">Blog</a></li>
<li><a href="https://faq.oxidmodule.com" target="_blank">FAQ</a></li>
<li><a href="https://faq.d3data.de" target="_blank">FAQ</a></li>
<li><a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a></li>
<li><a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a></li>
<li><a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a></li>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,14 +72,14 @@
<div class="Page__header">
<h1><a href="../../installation/Anforderungen/Systemanforderungen.html">Anforderungen</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<ul>
<li>PHP Version
<ul>
<li>5.6.x bis 7.3.x</li>
<li>5.6.x bis 7.4.x</li>
</ul>
</li>
<li>PHP Decoder
@ -87,9 +87,17 @@
<li>installierter ionCube Loader</li>
</ul>
</li>
<li>Shopversionen / -editionen
<li>Shopeditionen
<ul>
<li>OXID eShop Community Edition (CE), Professional Edition (PE) oder Enterprise Edition (EE) in Compilation Version
<li>OXID eShop Community Edition (CE)</li>
<li>OXID eShop Professional Edition (PE)</li>
<li>OXID eShop Enterprise Edition (EE)</li>
<li>OXID eShop B2B Edition</li>
</ul>
</li>
<li>Shopversionen
<ul>
<li>OXID eShop in Compilation Version
<ul>
<li>6.0.x</li>
<li>6.1.x</li>
@ -108,7 +116,7 @@
<li>Installation via <a href="https://getcomposer.org" class="Link--external">Composer</a>
</li>
</ul>
<p>Beachten Sie, dass die Ihnen vorliegende Modulversion entsprechend fĂĽr <strong>PHP 5.6</strong>, <strong>PHP 7.0</strong>, <strong>PHP 7.1</strong>, <strong>PHP 7.2</strong> oder <strong>PHP 7.3</strong> sowie dem auf Ihrem Server vorhandenen Decoder (<strong>ionCube Loader</strong>) kompatibel ist. Im Zweifelsfall kontaktieren Sie uns und nennen den fĂĽr Ihren Shop genutzten Decoder und die PHP-Version.</p>
<p>Beachten Sie, dass die Ihnen vorliegende Modulversion entsprechend fĂĽr Ihre genutzte PHP-Version sowie dem auf Ihrem Server vorhandenen Decoder (<strong>ionCube Loader</strong>) kompatibel ist. Im Zweifelsfall kontaktieren Sie uns und nennen den fĂĽr Ihren Shop genutzten Decoder und die PHP-Version.</p>
<p>Kontrollieren Sie bitte auch, ob diese Modulversion fĂĽr die von Ihnen eingesetzte Shopedition (Professional Edition (PE) oder Enterprise Edition (EE)) ausgelegt ist.</p>
</div>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../../installation/Anforderungen/Systemanforderungen.html">Anforderungen</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,14 +72,14 @@
<div class="Page__header">
<h1><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Deinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Löschen Sie den Ordner <code>bonimascore</code> und seine enthaltenen Elemente aus dem Verzeichnis <code>source/modules/d3</code> Ihres Shops.
Bestätigen Sie anschließend im Shopadmin unter <span class="navi_element">Erweiterungen</span> -&gt; <span class="navi_element">Module</span> -&gt; <span class="navi_element">Installierte Shop-Module</span> die Nachricht:</p>
<blockquote>
<p>Es gibt registrierte Erweiterungen im eShop, deren Verzeichnis nicht vorhanden ist.<br />
<p>Es gibt registrierte Erweiterungen im eShop, deren Verzeichnis nicht vorhanden ist.
Möchten Sie alle Modulinformationen einschließlich Konfigurationseinstellungen und Blockinformationen für Templates löschen?</p>
</blockquote>
</div>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Deinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,18 +72,16 @@
<div class="Page__header">
<h1><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Deinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Starten Sie die Konsole Ihres Webservers und wechseln in das Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses). FĂĽhren Sie Sie dort diesen Befehl aus:</p>
<h3 id="page_auf-der-Kommandozeile"><strong>auf der Kommandozeile</strong></h3>
<p>Starten Sie die Konsole Ihres Webservers und wechseln in das Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses). FĂĽhren Sie Sie dort diesen Befehl aus:</p>
<pre><code class="language-Bash">php composer remove d3/bonimascore --no-update
</code></pre>
<blockquote class="alert alert-warning">
<i class='fas fa-exclamation-triangle'></i> <p> Achten Sie darauf, dass die Installation ĂĽber Composer mit derselben PHP-Version erfolgt, in der auch Ihr Shop installiert ist. Sie erhalten sonst unpassende Modulpakete.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> Benötigt Ihre Installation einen anderen Aufruf von Composer, ändern Sie den Befehl bitte entsprechend ab. Für weitere Optionen dieses Befehls lesen Sie bitte die <a href="https://getcomposer.org/doc/03-cli.md#require" class="Link--external">Dokumentation von Composer</a>.</p>
<i class='fas fa-info-circle'></i> <p> Benötigt Ihre Installation einen anderen Aufruf von Composer, ändern Sie den Befehl bitte entsprechend ab. Für weitere Optionen dieses Befehls lesen Sie bitte die <a href="https://getcomposer.org/doc/03-cli.md#remove" class="Link--external">Dokumentation von Composer</a>.</p>
</blockquote>
</div>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,11 +72,22 @@
<div class="Page__header">
<h1><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Deinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Deaktivieren Sie das Modul <strong><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</strong> ĂĽber den Shopadmin <span class="navi_element">Erweiterungen</span> -&gt; <span class="navi_element">Module</span>. Klicken Sie nach Auswahl von <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</span> auf den Button <span class="navi_element">Deaktivieren</span>.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Deaktivieren Sie das Modul unter <span class="navi_element">Erweiterungen</span> -&gt; <span class="navi_element">Module</span>. Klicken Sie nach Auswahl von <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</span> auf den Button <span class="navi_element">Deaktivieren</span>.</p>
<h3 id="page_oder-auf-der-Kommandozeile"><strong>oder auf der Kommandozeile</strong></h3>
<p>Alternativ können Sie die Moduldeaktivierung auch über die Kommandozeile (CLI) im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) durchführen.</p>
<pre><code class="language-bash">./vendor/bin/oe-console oe:module:deactivate d3bonimascore
</code></pre>
<blockquote class="alert alert-warning">
<i class='fas fa-exclamation-triangle'></i> <p> <strong>Enterprise Edition</strong>: Achten Sie darauf, dass das Modul in allen weiteren Shops (Mall) ebenfalls deaktiviert werden muss.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> <strong>Enterprise Edition</strong>: Zur Deaktivierung in einem bestimmten Shopmandanten verwenden Sie das <code>--shop-id</code>-Argument (<code>...oe-console --shop-id 1 oe:module...</code>)</p>
</blockquote>
</div>
<nav>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Deinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,14 +72,22 @@
<div class="Page__header">
<h1><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Deinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Leeren Sie das Verzeichnis <code>tmp</code> ĂĽber <span class="navi_element">Admin</span> -&gt; <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">TMP leeren</span>. Markieren Sie <span class="navi_element">komplett leeren</span> und klicken auf <span class="navi_element">TMP leeren</span>.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Leeren Sie das Verzeichnis <code>tmp</code> ĂĽber <span class="navi_element">Admin</span> -&gt; <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">TMP leeren</span>. Markieren Sie <span class="navi_element">komplett leeren</span> und klicken auf <span class="navi_element">TMP leeren</span>.</p>
<p>Sofern die Views nicht automatisch aktualisiert werden, fĂĽhren Sie dies noch durch.</p>
<h3 id="page_oder-auf-der-Kommandozeile"><strong>oder auf der Kommandozeile</strong></h3>
<p>Alle TMP-leeren-Aktionen stehen Ihnen ebenfalls auf der Kommandozeile (CLI) zur VerfĂĽgung. FĂĽhren Sie diesen Befehl im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) aus:</p>
<pre><code class="language-bash">./vendor/bin/d3cleartmp
</code></pre>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> Erfordert Ihre Installation eine andere Vorgehensweise zum Leeren des Caches oder zum Aktualisieren der Datenbank-Viewtabellen, fĂĽhren Sie diese bitte aus.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> Beim Kommandozeilenaufruf werden Ihnen weitere Optionen gezeigt, mit denen Sie die Aktion gezielt steuern können.</p>
</blockquote>
</div>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../installation/Installation.html">Installation / Update / Deinstallation</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
@ -95,7 +95,7 @@
<nav>
<ul class="Pager">
<li class=Pager--prev><a href="../changelog/Changelog.html">ZurĂĽck</a></li> <li class=Pager--next><a href="../installation/Anforderungen/Systemanforderungen.html">Weiter</a></li> </ul>
<li class=Pager--prev><a href="../editions/Editionen.html">ZurĂĽck</a></li> <li class=Pager--next><a href="../installation/Anforderungen/Systemanforderungen.html">Weiter</a></li> </ul>
</nav>
</article>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item Nav__item--active'><a href="../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item Nav__item--active'><a href="../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../installation/Installationspruefung.html">InstallationsprĂĽfung</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,11 +72,12 @@
<div class="Page__header">
<h1><a href="../../installation/Neuinstallation/index.html">Neuinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Neuinstallation/Lizenz_eintragen.html">LizenzschlĂĽssel eintragen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Das Modul verwendet LizenzschlĂĽssel, um die Lizenzverwaltung fĂĽr Sie und auch fĂĽr uns einfacher zu gestalten. Hierbei haben Sie je nach Modul die Wahl zwischen einer kostenfreien Testlizenz und einer Lizenz fĂĽr den Einsatz im Livebetrieb.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Das Modul verwendet LizenzschlĂĽssel, um die Lizenzverwaltung fĂĽr Sie und auch fĂĽr uns einfacher zu gestalten. Hierbei haben Sie je nach Modul die Wahl zwischen einer kostenfreien Testlizenz und einer Lizenz fĂĽr den Einsatz im Livebetrieb.</p>
<p>Speziell <strong><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</strong> wird in unterschiedlichen Editionen fĂĽr den Livebetrieb angeboten. Besuchen Sie unseren <a href="https://www.oxidmodule.com/" class="Link--external">Moduleshop</a>, um mehr darĂĽber zu erfahren.</p>
<p>Rufen Sie zum Anfordern des Lizenzschlüssels die Modulverwaltung im Adminbereich unter <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">Modulverwaltung</span> auf. Klappen Sie den Eintrag des jeweiligen Moduls aus. Sofern erforderlich, können Sie hier den Lizenzassistenten starten, der schnell und einfach ihr Modul aktiviert.</p>
</div>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,13 +72,17 @@
<div class="Page__header">
<h1><a href="../../installation/Neuinstallation/index.html">Neuinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufĂĽgen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>FĂĽhren Sie in der Konsole im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) diesen Befehl aus, um das Modul <strong><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</strong> zur Installation hinzuzufĂĽgen:</p>
<pre><code class="language-bash">php composer require d3/bonimascore --update-no-dev
<h3 id="page_auf-der-Kommandozeile"><strong>auf der Kommandozeile</strong></h3>
<p>FĂĽhren Sie in der Konsole im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) diesen Befehl aus, um das Modul <strong><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</strong> zur Installation hinzuzufĂĽgen:</p>
<pre><code class="language-bash">php composer require d3/bonimascore:^3.2.0.0 --update-no-dev
</code></pre>
<blockquote class="alert alert-warning">
<i class='fas fa-exclamation-triangle'></i> <p> Achten Sie darauf, dass Composer für die Installation die selbe PHP-Version verwendet, in der auch Ihr Shop ausgeführt wird. Sie erhalten sonst möglicherweise unpassende Modulpakete.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> Benötigt Ihre Installation einen anderen Aufruf von Composer, ändern Sie den Befehl bitte entsprechend ab. Für weitere Optionen dieses Befehls lesen Sie bitte die <a href="https://getcomposer.org/doc/03-cli.md#require" class="Link--external">Dokumentation von Composer</a>.</p>
</blockquote>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,13 +72,21 @@
<div class="Page__header">
<h1><a href="../../installation/Neuinstallation/index.html">Neuinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Aktivieren Sie das Modul ĂĽber den Shopadmin unter <span class="navi_element">Erweiterungen</span> -&gt; <span class="navi_element">Module</span>. Klicken Sie nach Auswahl von <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</span> auf den Button <span class="navi_element">Aktivieren</span>.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Aktivieren Sie das Modul ĂĽber den Shopadmin unter <span class="navi_element">Erweiterungen</span> -&gt; <span class="navi_element">Module</span>. Klicken Sie nach Auswahl von <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</span> auf den Button <span class="navi_element">Aktivieren</span>.</p>
<h3 id="page_oder-auf-der-Kommandozeile"><strong>oder auf der Kommandozeile</strong></h3>
<p>Alternativ können Sie die Modulaktivierung auch auf der Kommandozeile (CLI) im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) durchführen.</p>
<pre><code class="language-bash">./vendor/bin/oe-console oe:module:activate d3bonimascore
</code></pre>
<blockquote class="alert alert-warning">
<i class='fas fa-exclamation-triangle'></i> <p> <strong>Enterprise Editon</strong>: Achten Sie darauf, dass das Modul in weiteren Shops (Mall) ebenfalls aktiviert werden muss, um dessen Funktion dort auch zu nutzen.</p>
<i class='fas fa-exclamation-triangle'></i> <p> <strong>Enterprise Edition</strong>: Achten Sie darauf, dass das Modul in weiteren Shops (Mall) ebenfalls aktiviert werden muss, um dessen Funktion dort auch zu nutzen.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> <strong>Enterprise Edition</strong>: Zur Aktivierung in einem bestimmten Shopmandanten verwenden Sie das <code>--shop-id</code>-Argument (<code>...oe-console --shop-id 1 oe:module...</code>)</p>
</blockquote>
</div>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../../installation/Neuinstallation/index.html">Neuinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,14 +72,19 @@
<div class="Page__header">
<h1><a href="../../installation/Neuinstallation/index.html">Neuinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Direkt nach der Modulaktivierung startet der Assistent, der Sie durch die Shopanpassung führt. Darin können Sie verschiedene Optionen der Installation wählen.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Direkt nach der Modulaktivierung startet der Assistent, der Sie durch die Shopanpassung führt. Darin können Sie verschiedene Optionen der Installation wählen.</p>
<p>Den Installationsassistenten finden Sie auch unter den MenĂĽpunkten <span class="navi_element">Admin</span> -&gt; <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">Modulverwaltung</span> -&gt; <span class="navi_element">Modulinstallation</span>.</p>
<p>Bei tiefgreifenden Ă„nderungen an Ihrem Shop (z.B. HinzufĂĽgen weiterer Sprachen oder Mandanten) rufen Sie den Installationsassistenten bitte erneut auf, um dann eventuell notwendige Nacharbeiten fĂĽr das Modul ausfĂĽhren zu lassen.</p>
<p>Möchten Sie die Änderungen manuell installieren, können Sie sich über diesen Assistenten ebenfalls eine Checkliste erstellen.</p>
<h3 id="page_oder-auf-der-Kommandozeile"><strong>oder auf der Kommandozeile</strong></h3>
<p>Der Installationsassistent steht Ihnen ebenfalls auf der Kommandozeile (CLI) zur VerfĂĽgung. FĂĽhren Sie diesen Befehl im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) aus:</p>
<pre><code class="language-bash">./vendor/bin/d3modules_install
</code></pre>
</div>
<nav>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,14 +72,22 @@
<div class="Page__header">
<h1><a href="../../installation/Neuinstallation/index.html">Neuinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Leeren Sie das Verzeichnis <code>tmp</code> ĂĽber <span class="navi_element">Admin</span> -&gt; <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">TMP leeren</span>. Markieren Sie <span class="navi_element">komplett leeren</span> und klicken auf <span class="navi_element">TMP leeren</span>.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Leeren Sie das Verzeichnis <code>tmp</code> ĂĽber <span class="navi_element">Admin</span> -&gt; <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">TMP leeren</span>. Markieren Sie <span class="navi_element">komplett leeren</span> und klicken auf <span class="navi_element">TMP leeren</span>.</p>
<p>Sofern die Views nicht automatisch aktualisiert werden, fĂĽhren Sie dies noch durch.</p>
<h3 id="page_oder-auf-der-Kommandozeile"><strong>oder auf der Kommandozeile</strong></h3>
<p>Alle TMP-leeren-Aktionen stehen Ihnen ebenfalls auf der Kommandozeile (CLI) zur VerfĂĽgung. FĂĽhren Sie diesen Befehl im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) aus:</p>
<pre><code class="language-bash">./vendor/bin/d3cleartmp
</code></pre>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> Erfordert Ihre Installation eine andere Vorgehensweise zum Leeren des Caches oder zum Aktualisieren der Datenbank-Viewtabellen, fĂĽhren Sie diese bitte aus.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> Beim Kommandozeilenaufruf werden Ihnen weitere Optionen gezeigt, mit denen Sie die Aktion gezielt steuern können.</p>
</blockquote>
</div>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../../installation/Neuinstallation/index.html">Neuinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,12 +72,13 @@
<div class="Page__header">
<h1><a href="../../installation/Neuinstallation/index.html">Neuinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Das Modul ist fĂĽr die Verwendung mit den folgenden OXID-Themes vorbereitet:</p>
<ul>
<li>Wave</li>
<li>Flow</li>
</ul>
<p>Verwenden Sie in Ihrem Shop ein angepasstes Verzeichnis fĂĽr Ihre Templates (neues Theme oder CustomTheme), kopieren Sie die Templates und / oder die CSS-Dateien in die neuen Ordner.</p>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../../installation/Neuinstallation/index.html">Neuinstallation</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,12 +72,16 @@
<div class="Page__header">
<h1><a href="../../installation/Neuinstallation/index.html">Neuinstallation</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<h2 id="page_Schnellstart-per-Composer">Schnellstart per Composer</h2>
<pre><code class="language-bash">php composer require d3/bonimascore --update-no-dev
<h3 id="page_auf-der-Kommandozeile"><strong>auf der Kommandozeile</strong></h3>
<pre><code class="language-bash">php composer require d3/bonimascore:^3.2.0.0 --update-no-dev
./vendor/bin/oe-console oe:module:activate d3bonimascore
./vendor/bin/d3modules_install
./vendor/bin/d3cleartmp
</code></pre>
<p>Detailliertere Angaben zur Installation entnehmen Sie bitte den folgenden Seiten.</p>
</div>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item Nav__item--active'><a href="../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item has-children'><a href="../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item Nav__item--active'><a href="../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../installation/Schnellstart.html">Schnellstart</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,16 +72,18 @@
<div class="Page__header">
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Starten Sie die Konsole Ihres Webservers und wechseln in das Hauptverzeichnis Ihres
<h3 id="page_auf-der-Kommandozeile"><strong>auf der Kommandozeile</strong></h3>
<p>Starten Sie die Konsole Ihres Webservers und wechseln in das Hauptverzeichnis Ihres
Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses). FĂĽhren Sie dort diesen Befehl aus:</p>
<pre><code class="language-bash">php composer update d3/bonimascore --no-dev
<pre><code class="language-bash">php composer require d3/bonimascore:^3.2.0.0 --update-no-dev
</code></pre>
<p>Im weiteren Ablauf werden Sie gefragt, ob die Moduldateien überschrieben werden sollen. Bestätigen Sie dies für den Eintrag <code>d3/bonimascore</code>.</p>
<blockquote class="alert alert-warning">
<i class='fas fa-exclamation-triangle'></i> <p> Achten Sie darauf, dass die Installation ĂĽber Composer mit derselben PHP-Version erfolgt, in der auch Ihr Shop installiert ist. Sie erhalten sonst unpassende Modulpakete.</p>
<i class='fas fa-exclamation-triangle'></i> <p> Achten Sie darauf, dass Composer für die Installation die selbe PHP-Version verwendet, in der auch Ihr Shop ausgeführt wird. Sie erhalten sonst möglicherweise unpassende Modulpakete.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> Benötigt Ihre Installation einen anderen Aufruf von Composer, ändern Sie den Befehl bitte entsprechend ab. Für weitere Optionen dieses Befehls lesen Sie bitte die <a href="https://getcomposer.org/doc/03-cli.md#require" class="Link--external">Dokumentation von Composer</a>.</p>
@ -90,7 +92,7 @@ Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses)
<nav>
<ul class="Pager">
<li class=Pager--prev><a href="../../installation/Update/Paketquelle_entfernen.html">ZurĂĽck</a></li> <li class=Pager--next><a href="../../installation/Update/Providerspezifische_Installation.html">Weiter</a></li> </ul>
<li class=Pager--prev><a href="../../installation/Update/Modul_deaktivieren.html">ZurĂĽck</a></li> <li class=Pager--next><a href="../../installation/Update/Providerspezifische_Installation.html">Weiter</a></li> </ul>
</nav>
</article>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,11 +72,12 @@
<div class="Page__header">
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">LizenzschlĂĽssel aktualisieren</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Wird für die neue Modulversion ein aktualisierter Lizenzschlüssel benötigt, tragen Sie diesen im Adminbereich unter <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">Modulverwaltung</span> ein. Klappen Sie dazu den Eintrag des jeweiligen Moduls aus und starten den Lizenzassistent.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Wird für die neue Modulversion ein aktualisierter Lizenzschlüssel benötigt, tragen Sie diesen im Adminbereich unter <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">Modulverwaltung</span> ein. Klappen Sie dazu den Eintrag des jeweiligen Moduls aus und starten den Lizenzassistent.</p>
</div>
<nav>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,16 +72,27 @@
<div class="Page__header">
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Deaktivieren Sie das Modul ĂĽber den Shopadmin unter <span class="navi_element">Erweiterungen</span> -&gt; <span class="navi_element">Module</span>. Klicken Sie nach Auswahl von <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</span> auf den Button <span class="navi_element">Deaktivieren</span>.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Deaktivieren Sie das Modul unter <span class="navi_element">Erweiterungen</span> -&gt; <span class="navi_element">Module</span>. Klicken Sie nach Auswahl von <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</span> auf den Button <span class="navi_element">Deaktivieren</span>.</p>
<h3 id="page_oder-auf-der-Kommandozeile"><strong>oder auf der Kommandozeile</strong></h3>
<p>Alternativ können Sie die Moduldeaktivierung auch über die Kommandozeile (CLI) im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) durchführen.</p>
<pre><code class="language-bash">./vendor/bin/oe-console oe:module:deactivate d3bonimascore
</code></pre>
<blockquote class="alert alert-warning">
<i class='fas fa-exclamation-triangle'></i> <p> <strong>Enterprise Edition</strong>: Achten Sie darauf, dass das Modul in allen weiteren Shops (Mall) ebenfalls deaktiviert werden muss.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> <strong>Enterprise Edition</strong>: Zur Deaktivierung in einem bestimmten Shopmandanten verwenden Sie das <code>--shop-id</code>-Argument (<code>...oe-console --shop-id 1 oe:module...</code>)</p>
</blockquote>
</div>
<nav>
<ul class="Pager">
<li class=Pager--prev><a href="../../installation/Update/Updatedefinition.html">ZurĂĽck</a></li> <li class=Pager--next><a href="../../installation/Update/Paketquelle_entfernen.html">Weiter</a></li> </ul>
<li class=Pager--prev><a href="../../installation/Update/Updatedefinition.html">ZurĂĽck</a></li> <li class=Pager--next><a href="../../installation/Update/Dateien_erneuern.html">Weiter</a></li> </ul>
</nav>
</article>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,11 +72,22 @@
<div class="Page__header">
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Wechseln Sie im Adminbereich zu <span class="navi_element">Erweiterungen</span> -&gt; <span class="navi_element">Module</span>. Klicken Sie nach Auswahl von <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</span> auf den Button <span class="navi_element">Aktivieren</span>.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Wechseln Sie im Adminbereich zu <span class="navi_element">Erweiterungen</span> -&gt; <span class="navi_element">Module</span>. Klicken Sie nach Auswahl von <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</span> auf den Button <span class="navi_element">Aktivieren</span>.</p>
<h3 id="page_oder-auf-der-Kommandozeile"><strong>oder auf der Kommandozeile</strong></h3>
<p>Alternativ können Sie die Modulaktivierung auch über die Kommandozeile (CLI) im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) durchführen.</p>
<pre><code class="language-bash">./vendor/bin/oe-console oe:module:activate d3bonimascore
</code></pre>
<blockquote class="alert alert-warning">
<i class='fas fa-exclamation-triangle'></i> <p> <strong>Enterprise Edition</strong>: Achten Sie darauf, dass das Modul in weiteren Shops (Mall) ebenfalls aktiviert werden muss, um dessen Funktion dort auch zu nutzen.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> <strong>Enterprise Edition</strong>: Zur Aktivierung in einem bestimmten Shopmandanten verwenden Sie das <code>--shop-id</code>-Argument (<code>...oe-console --shop-id 1 oe:module...</code>)</p>
</blockquote>
</div>
<nav>

View File

@ -1,119 +0,0 @@
<!DOCTYPE html>
<html class="no-js" lang="de">
<head>
<title>Paketquelle entfernen - BonimaScore</title>
<meta name="description" content="">
<meta name="author" content="DÂł Data Development">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="../../themes/d3/img/favicon.png" type="image/x-icon">
<!-- Mobile -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Font -->
<!-- CSS -->
<link href='../../themes/d3/css/theme-blue.min.css' rel='stylesheet' type='text/css'><link href='../../themes/d3/css/d3.css' rel='stylesheet' type='text/css'>
<!-- Tipue Search -->
<link href="../../tipuesearch/tipuesearch.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="../../themes/d3/js/html5shiv-3.7.3.min.js"></script>
<![endif]-->
</head>
<body class=" ">
<div class="Columns content">
<aside class="Columns__left Collapsible">
<button type="button" class="Button Collapsible__trigger">
<span class="Collapsible__trigger__bar"></span>
<span class="Collapsible__trigger__bar"></span>
<span class="Collapsible__trigger__bar"></span>
</button>
<a class="Brand" href="../../index.html"><i class='fab fa-d3 d3fa-color-blue'></i> BonimaScore</a>
<div class="Search">
<svg class="Search__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 451 451">
<path d="M447.05 428l-109.6-109.6c29.4-33.8 47.2-77.9 47.2-126.1C384.65 86.2 298.35 0 192.35 0 86.25 0 .05 86.3.05 192.3s86.3 192.3 192.3 192.3c48.2 0 92.3-17.8 126.1-47.2L428.05 447c2.6 2.6 6.1 4 9.5 4s6.9-1.3 9.5-4c5.2-5.2 5.2-13.8 0-19zM26.95 192.3c0-91.2 74.2-165.3 165.3-165.3 91.2 0 165.3 74.2 165.3 165.3s-74.1 165.4-165.3 165.4c-91.1 0-165.3-74.2-165.3-165.4z"/>
</svg>
<input type="search" id="tipue_search_input" class="Search__field" placeholder="Suchen..." autocomplete="on"
results=25 autosave=text_search>
</div>
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<div class="Links">
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
<a href="https://www.oxidmodule.com/impressum" target="_blank">Impressum</a><br />
</div>
</div>
</aside>
<div class="Columns__right Columns__right--full">
<div class="Columns__right__content">
<div class="doc_content">
<article class="Page">
<div class="Page__header">
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
</div>
<div class="s-content">
<p>Durch einen Wechsel der Paketquelle ist die veraltete Angabe nicht mehr erforderlich. Um Konflikte zu vermeiden, sollte die alte Paketquelle entfernt werden. Haben Sie diese schon früher entfernt, können Sie diesen Schritt überspringen.</p>
<p>Starten Sie die Konsole Ihres Webservers und wechseln in das Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses). Senden Sie dort diesen Befehl ab:</p>
<pre><code class="language-bash">php composer config --unset repositories.d3
php composer config --unset repositories.D3modules
</code></pre>
<blockquote class="alert alert-warning">
<i class='fas fa-exclamation-triangle'></i> <p> Achten Sie darauf, dass die Installation ĂĽber Composer mit derselben PHP-Version erfolgt, in der auch Ihr Shop installiert ist. Sie erhalten sonst unpassende Modulpakete.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> Benötigt Ihre Installation einen anderen Aufruf von Composer, ändern Sie den Befehl bitte entsprechend ab. Für weitere Optionen dieses Befehls lesen Sie bitte die <a href="https://getcomposer.org/doc/03-cli.md#require" class="Link--external">Dokumentation von Composer</a>.</p>
</blockquote>
</div>
<nav>
<ul class="Pager">
<li class=Pager--prev><a href="../../installation/Update/Modul_deaktivieren.html">ZurĂĽck</a></li> <li class=Pager--next><a href="../../installation/Update/Dateien_erneuern.html">Weiter</a></li> </ul>
</nav>
</article>
</div>
</div>
</div>
</div>
<!-- JS -->
<script src="../../themes/d3/js/jquery-1.11.3.min.js"></script><script src="../../themes/d3/js/highlight.pack.js"></script><script src="../../themes/d3/js/daux.js"></script><script src="../../themes/d3/js/fontawesome-all.js"></script>
<!-- Tipue Search -->
<script type="text/javascript" src="../../tipuesearch/tipuesearch.js"></script>
<script>
window.onunload = function(){}; // force $(document).ready to be called on back/forward navigation in firefox
$(function() {
tipuesearch({
'base_url': '../../'
});
});
</script>
</body>
</html>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

View File

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html class="no-js" lang="de">
<head>
<title>Shopanpassungen installierren - BonimaScore</title>
<title>Shopanpassungen installieren - BonimaScore</title>
<meta name="description" content="">
<meta name="author" content="DÂł Data Development">
<meta charset="UTF-8">
@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -70,16 +70,21 @@
<article class="Page">
<div class="Page__header">
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></h1>
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Ob Shopanpassungen notwendig sind, ist von der Versionsänderung des Moduls abhängig.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Ob Shopanpassungen notwendig sind, ist von der Versionsänderung des Moduls abhängig.</p>
<p>Möglicherweise sehen Sie nach dem Neuaktivieren des Moduls den Installationsassistent, der Sie durch die Änderungen führt. Folgen Sie dann den einzelnen Schritten. Möchten Sie die Änderungen manuell installieren, können Sie sich über diesen Assistenten ebenfalls eine Checkliste erstellen.</p>
<p>Wird der Assistent nicht gezeigt (Sie sehen wieder die ModulĂĽbersicht), waren keine Anpassungen am Shop notwendig.</p>
<p>Ob erforderliche Updates ausgeführt werden sollen, können Sie jederzeit im Adminbereich unter <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">Modulverwaltung</span> -&gt; <span class="navi_element">Modulinstallation</span> prüfen.</p>
<h3 id="page_oder-auf-der-Kommandozeile"><strong>oder auf der Kommandozeile</strong></h3>
<p>Der Installationsassistent steht Ihnen ebenfalls auf der Kommandozeile (CLI) zur VerfĂĽgung. FĂĽhren Sie diesen Befehl im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) aus:</p>
<pre><code class="language-bash">./vendor/bin/d3modules_install
</code></pre>
</div>
<nav>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item Nav__item--active'><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,14 +72,22 @@
<div class="Page__header">
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Leeren Sie das Verzeichnis <code>tmp</code> ĂĽber <span class="navi_element">Admin</span> -&gt; <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">TMP leeren</span>. Markieren Sie <span class="navi_element">komplett leeren</span> und klicken auf <span class="navi_element">TMP leeren</span>.</p>
<h3 id="page_im-Adminbereich"><strong>im Adminbereich</strong></h3>
<p>Leeren Sie das Verzeichnis <code>tmp</code> ĂĽber <span class="navi_element">Admin</span> -&gt; <span class="navi_element"><i class='fab fa-d3 d3fa-color-blue'></i> Module</span> -&gt; <span class="navi_element">Modul-Connector</span> -&gt; <span class="navi_element">TMP leeren</span>. Markieren Sie <span class="navi_element">komplett leeren</span> und klicken auf <span class="navi_element">TMP leeren</span>.</p>
<p>Sofern die Views nicht automatisch aktualisiert werden, fĂĽhren Sie dies noch durch.</p>
<h3 id="page_oder-auf-der-Kommandozeile"><strong>oder auf der Kommandozeile</strong></h3>
<p>Alle TMP-leeren-Aktionen stehen Ihnen ebenfalls auf der Kommandozeile (CLI) zur VerfĂĽgung. FĂĽhren Sie diesen Befehl im Hauptverzeichnis Ihres Shops (oberhalb des <code>source</code>- und <code>vendor</code>-Verzeichnisses) aus:</p>
<pre><code class="language-bash">./vendor/bin/d3cleartmp
</code></pre>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> Erfordert Ihre Installation eine andere Vorgehensweise zum Leeren des Caches oder zum Aktualisieren der Datenbank-Viewtabellen, fĂĽhren Sie diese bitte aus.</p>
</blockquote>
<blockquote class="alert alert-info">
<i class='fas fa-info-circle'></i> <p> Beim Kommandozeilenaufruf werden Ihnen weitere Optionen gezeigt, mit denen Sie die Aktion gezielt steuern können.</p>
</blockquote>
</div>

View File

@ -45,7 +45,7 @@
<div class="Collapsible__content">
<!-- Navigation -->
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Paketquelle_entfernen.html">Paketquelle entfernen</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installierren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
<ul class='Nav'><li class='Nav__item '><a href="../../installation/Installation.html">Installation / Update / Deinstallation</a></li><li class='Nav__item has-children'><a href="../../installation/Anforderungen/Systemanforderungen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Anforderungen</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Anforderungen/Systemanforderungen.html">Systemanforderungen</a></li><li class='Nav__item '><a href="../../installation/Anforderungen/Vorbereitungen.html">Vorbereitungen</a></li></ul></li><li class='Nav__item has-children'><a href="../../installation/Neuinstallation/index.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Neuinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Neuinstallation/Vorbereitung.html">Vorbereitungen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_hinzufuegen.html">Modul zur Installation hinzufügen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Verwendung_eigener_Themes.html">Verwendung eigener Themes</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Modul_im_Shop_aktivieren.html">Modul im Shop aktivieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Lizenz_eintragen.html">Lizenzschlüssel eintragen</a></li><li class='Nav__item '><a href="../../installation/Neuinstallation/Updatefaehigkeit.html">Updatefähigkeit</a></li></ul></li><li class='Nav__item Nav__item--open has-children'><a href="../../installation/Update/Updatedefinition.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Update</a><ul class='Nav'><li class='Nav__item Nav__item--active'><a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgeführt werden?</a></li><li class='Nav__item '><a href="../../installation/Update/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Update/Dateien_erneuern.html">Dateien erneuern</a></li><li class='Nav__item '><a href="../../installation/Update/Providerspezifische_Installation.html">Providerspezifische Installation</a></li><li class='Nav__item '><a href="../../installation/Update/Modulinformationen_aktualisieren.html">Modulinformationen aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Shopanpassungen_installieren.html">Shopanpassungen installieren</a></li><li class='Nav__item '><a href="../../installation/Update/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li><li class='Nav__item '><a href="../../installation/Update/Lizenzschluessel_aktualisieren.html">Lizenzschlüssel aktualisieren</a></li><li class='Nav__item '><a href="../../installation/Update/Erweiterungen_anpassen.html">Erweiterungen anpassen</a></li></ul></li><li class='Nav__item '><a href="../../installation/Installationspruefung.html">Installationsprüfung</a></li><li class='Nav__item '><a href="../../installation/Schnellstart.html">Schnellstart</a></li><li class='Nav__item has-children'><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html" class="folder"><i class="Nav__arrow">&nbsp;</i>Deinstallation</a><ul class='Nav'><li class='Nav__item '><a href="../../installation/Deinstallation/Modulerweiterungen_deaktivieren_und_entfernen.html">Modulerweiterungen deaktivieren und entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_deaktivieren.html">Modul deaktivieren</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Modul_aus_der_Installation_entfernen.html">Modul aus der Installation entfernen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Dateien_loeschen.html">Dateien löschen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/Datenbank_bereinigen.html">Datenbank bereinigen</a></li><li class='Nav__item '><a href="../../installation/Deinstallation/TMP-Ordner_leeren.html">TMP-Ordner leeren</a></li></ul></li></ul>
@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,11 +72,11 @@
<div class="Page__header">
<h1><a href="../../installation/Update/Updatedefinition.html">Update</a> <svg class="Page__header--separator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 477.175 477.175"><path d="M360.73 229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1 0s-5.3 13.8 0 19.1l215.5 215.5-215.5 215.5c-5.3 5.3-5.3 13.8 0 19.1 2.6 2.6 6.1 4 9.5 4 3.4 0 6.9-1.3 9.5-4l225.1-225.1c5.3-5.2 5.3-13.8.1-19z"/></svg> <a href="../../installation/Update/Updatedefinition.html">Wann kann ein Update ausgefĂĽhrt werden?</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">
<p>Die Updatenaweisungen können verwendet werden, wenn dieses Modul schon früher mit Hilfe von Composer installiert wurde.</p>
<p>Die Updateanweisungen können verwendet werden, wenn dieses Modul schon früher mit Hilfe von Composer installiert wurde.</p>
<p>Wurde die Installation bisher noch nicht durchgefĂĽhrt oder die Installation wurde <strong>nicht</strong> ĂĽber Composer
durchgefĂĽhrt (weil das Modul dies z.B. frĂĽher nicht unterstĂĽtzte), verwenden Sie bitte die Beschreibung unter <a href="../Neuinstallation/index.html">Neuinstallation</a>.</p>
</div>

View File

@ -53,7 +53,7 @@
<hr/>
<a href="https://www.oxidmodule.com" target="_blank">Shop</a><br />
<a href="https://blog.oxidmodule.com" target="_blank">Blog</a><br />
<a href="https://faq.oxidmodule.com" target="_blank">FAQ</a><br />
<a href="https://faq.d3data.de" target="_blank">FAQ</a><br />
<a href="https://docs.oxidmodule.com" target="_blank">Dokumentationen</a><br />
<a href="https://support.oxidmodule.com" target="_blank">DÂł Support Center</a><br />
<a href="https://www.oxidmodule.com/kontakt" target="_blank">Kontakt</a><br />
@ -72,7 +72,7 @@
<div class="Page__header">
<h1><a href="../support/Hilfe-und-Support.html">Hilfe und Support</a></h1>
<span class="ModifiedDate">
09.04.2020 </span>
15.06.2022 </span>
</div>
<div class="s-content">

File diff suppressed because one or more lines are too long

View File

@ -30,6 +30,7 @@ use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Exception\StandardException;
use OxidEsales\Eshop\Core\Model\ListModel;
use OxidEsales\Eshop\Core\Registry;
use PDO;
class d3bonimascore_config_main extends d3_cfg_mod_main
{
@ -84,8 +85,8 @@ class d3bonimascore_config_main extends d3_cfg_mod_main
{
$oQB = d3database::getInstance()->getQueryBuilder();
$oQB->select('*')
->from(getViewName('oxcountry'))
->where('oxactive='.$oQB->createNamedParameter(1, \PDO::PARAM_INT));
->from(oxNew(Country::class)->getViewName())
->where('oxactive='.$oQB->createNamedParameter(1, PDO::PARAM_INT));
/** @var ListModel $oList */
$oList = oxNew(ListModel::class);

View File

@ -23,12 +23,15 @@ use D3\ModCfg\Application\Model\d3database;
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
use Doctrine\DBAL\DBALException;
use Exception;
use OxidEsales\Eshop\Application\Model\Payment;
use OxidEsales\Eshop\Application\Model\PaymentList;
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Exception\StandardException;
use OxidEsales\Eshop\Core\Model\ListModel;
use OxidEsales\Eshop\Core\Registry;
use PDO;
class d3bonimascore_matrix_main extends d3_cfg_mod_main
{
@ -48,7 +51,7 @@ class d3bonimascore_matrix_main extends d3_cfg_mod_main
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws \Exception
* @throws Exception
*/
public function save()
{
@ -78,7 +81,7 @@ class d3bonimascore_matrix_main extends d3_cfg_mod_main
$oQB = d3database::getInstance()->getQueryBuilder();
$oQB->select('*')
->from(getViewName('d3bonimascore'))
->from(oxNew(d3bonimascore::class)->getViewName())
->where('shopid = '.$oQB->createNamedParameter($sShopId))
->addOrderBy('identreturncode', 'DESC')
->addOrderBy('scoreclass', 'ASC');
@ -114,8 +117,8 @@ class d3bonimascore_matrix_main extends d3_cfg_mod_main
{
$oQB = d3database::getInstance()->getQueryBuilder();
$oQB->select('*')
->from(getViewName('oxpayments'))
->where('oxactive = '.$oQB->createNamedParameter(1, \PDO::PARAM_INT))
->from(oxNew(Payment::class)->getViewName())
->where('oxactive = '.$oQB->createNamedParameter(1, PDO::PARAM_INT))
->orderBy('oxdesc');
/** @var PaymentList $oList */

View File

@ -17,6 +17,8 @@
namespace D3\Bonimascore\Application\Controller\Admin;
use Doctrine\DBAL\DBALException;
use Exception;
use OxidEsales\Eshop\Application\Model\Payment;
use OxidEsales\Eshop\Core\Registry;
@ -26,8 +28,8 @@ class d3bonimascore_payment_main extends d3bonimascore_matrix_main
/**
* Speichert sichere Zahlungsarten
* @throws \Doctrine\DBAL\DBALException
* @throws \Exception
* @throws DBALException
* @throws Exception
*/
public function save()
{

View File

@ -135,6 +135,26 @@ class d3bonimascore_user extends AdminController
return $oBonimaScore;
}
/**
* @param false $raw
*
* @return false|int
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
*/
public function getBonimaScoreValue($raw = false)
{
if (false == $this->bonimaresponse) {
return false;
}
return $this->bonimaresponse->d3GetScoreValue($raw);
}
/**
* @return false|string
* @throws DBALException
@ -254,9 +274,7 @@ class d3bonimascore_user extends AdminController
$sLastCheckDatetime = strtotime($aDetails['datum'] . " " . $aDetails['uhrzeit']);
$sNextCheckDatetime = strtotime("+$iValidPeriod day", $sLastCheckDatetime);
return $sNextCheckDatetime;
return strtotime("+$iValidPeriod day", $sLastCheckDatetime);
}
/**

View File

@ -23,6 +23,7 @@ use D3\ModCfg\Application\Model\Configuration\d3_cfg_mod;
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
use Doctrine\DBAL\DBALException;
use Exception;
use OxidEsales\Eshop\Application\Controller\Admin\AdminController;
use OxidEsales\Eshop\Application\Model\Groups;
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
@ -60,7 +61,7 @@ class d3bonimascore_usergroup extends AdminController
}
/**
* @throws \Exception
* @throws Exception
*/
public function save()
{

View File

@ -0,0 +1,40 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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

View File

@ -0,0 +1,56 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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
trrPzC3Z4fA/lVemr7e=

View File

@ -0,0 +1,36 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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

View File

@ -0,0 +1,37 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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
kovec5uaW160VVCJUZPqnn2q3Wd1/W==

View File

@ -0,0 +1,37 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
HR+cPrM+jj0CXWldoGmZyyIYFKmwJCx/RW92hSuHHPcaggVKvzLWBx74AJ0krSZtd5z326Tn0F47
S16mOuBSwhwZkJScvLHQWOj16pWIlNbvWqQhH7lOPC3kk85fE0ecLz2ZjhWU9N9Ez1WsXqVB6eTA
cdWrkMeq6/pGIDs/IQm6GSu+vgj5Sb1/2RJn5TVtjpOhAk+YVrlcHKSeX3cZgKIcwGUsjOTB+0CZ
zn7juTklG7Yn7n5dvwrIPvcKAr3Sgj/J9eTXHy7wd+WIrOK9epVw+4QzZcSRzcYz6cxRtX4dJuX8
0yPFX36DqYS8sWnS1vLFDkkyC+EBYp8EOhtB1NkoZ80cg72VO97KGkNIiAv3iwA2rwEL3U4fuMZb
/PnsxZsZdjEiJJaXBboe0/M3zJx7QRjJ0NumGdd2nBwWPlI0BUcFrNhAqg+WDqRVhZYnvm+GB0sx
h40Z7jXVCzj3xS20Y/ZuSOFpotEIMhM/t9Y7gtbtmGfHaLXaSQJSDqqQq+jlJBhbPdaS4YQsGKVV
NibGx3GfwYM7SVJhAWy4N8Tbl8RGPfpu9cu320PqoaTSC5YkNv3JfE2lAgi0kvfKABS4QfHYkESr
xJNboVHD2cwc4nhWt1qGJR9lqE0gqYiBgjoESuqcWOrhNR7h6E+FQu22woBFyRkZUB3qkLnKk1sP
PadCBTY1tDfiXmPEnrx/vOBYCO2nkIKx0A+xo7b05uahlL3mED73sE3jvnffuGwcGONoAQf8VptU
gXbXGVl9T/2ck5qYaKapuHQeEnR2hpkZOi3qUCnpjktoutnWbfyIrHDFYUCx9p5wh9mZGG/66Wm2
pFdwhef5umw/g+ieHjHp+SGgsOusn4LQ2aCs4BP9S/QTomPKiywFTEw+mwmUinYS6/ce4H/hwAUF
biAdZNIG6UUFiB8twNaJqJcn/YBG7r+uSeenij64eJU4tXsa07wO7qn/9bf+Xo4nV9YMB0z7uGdE
qG2QFJ5cwixr9V0q/t7PJYdq3xp28qoC5yfuCKSh+56HLWNBoTFX/zbaEDAeGhMOkOiBsdM5exdB
EH3j8RPOxXTYNwwJVdaHQ8g9jvmmhQf4+zjtT2LgQUEFHSCr0APZ8F6QjwiNr6J8jFa6wHAiHB0S
pOEu3On2X7tIRmN4+Kf3l/0NnYouW2Daz8PiiyLHvFZgQdt3WigekJ+q6yiVHko9LJrncTcaw90b
8G2Gv/6SHp0Dv28YKvVODTwd276euGnK69sgxLxWhkeeTyIl4iQ0QEFwr85qjeBH41qU+sAXoAYU
jPSmoyrVCduMpmeACJ+tyBJMMZydxbds+Q8uI/NLiqnBHzTD9wu662p4tz+HhqK7Ecy7u8bUFbJr
KWt/8yClkOkLRLgVwJ5uWixxKdZO8hfSFKccLqz2i51brGSsi8LfbU3h8N8QSqEGl1hbQIB2IlLF
kMWWbgj794/6W+iMaCEgIEUVnKFpaf0WaWNFjdyihgrjnVw/27Qj5g+rwaJAIia1vAth7KwzbGua
wZhS+LGBipr/J7m1j7YPV+FjWtZPJOHurzbtz3yg2USNyFpk9lB2BYLgmYthO6FUFeQkSvwimdr6
f25ZOLa+x/4IuumSVZh326mOtd/E5itBYUC69+SC9oA6H80eB5Oz+7sKWYuZWaYxSvWdzy7ak+dI
TGfBXEkbC+xq88NXxqdR5V+2E5peZ+mZCL1NIoBp8S8JmXcHYF36r6OZqvtA14O7osWpDSsQZNMo
/ZIqZT4Of4xR+4dWlE/djd1DVWS0n5K+Y/X7s3T6eJdZfhxfS3I+z+qFh8FnLFs/jCEGnwWcgQYq
Ut1mTf0WKrXt7Tw1dz4fDfNahcuv4Q8kb0pzisAhqPSrt99MzPu6NXFaLitQJ/7G5Iok0H5sMmgg
o1sJIxdi/lXkHQdRdOWknjkg8zCn6VYD5uHAx4SpIdLSe2ruD6ipgFqm98OXvn/gDJwDBdJ2Bd3a
IIx6LdY5Wm0n43Qw6VjJQtAQQlTk2RIvBXJB1kGOZ3T8EfjL04nhVPa5GAbM/yCAsBZUL5gwIGIF
7YeFGvv/JfNYv+C3EVMpwoYlZtMvglCisvLhWUatjkKjCHo5zdF3QsE86xAiOFmkcmgg8VL1v6pj
tPMQo9AAsY50uVO9ZX2QaD/1Mhk3INaUMsIClHCI3URgi4oPYdKGymZ0MIqX1ZfJkwd/etDNLe66
sHf8xThMcY2yKmPZZugjK3xDQGfCQxCT1z0iKd6pLThuPhtJR597wNnwSwiE3fAnsAvWJ14Xb2h5
KCiL8s2Ykbh5euHAE1o93m7qpF7di7e1cMPAOOT6oXSYtzixv27nRjCjBCu9Y28TLsAb/xVJhScR
fO+qYQO1PiKnQK5jYKo/xrWf05gZNOvzs9cvWN0iaxsQJmShmSDDnMu6xBbCv65WNXNLv4NEUwWl
+W6tcYJdz0==

View File

@ -0,0 +1,22 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
HR+cPyQP9yD6O9pq7owou7g3xsTANBdAZ1IfLlMk3EQutqSDZkc0hAUwAIxAW4r0uum+YACPjFXL
CGbkGNxlBoeaczAP+lYuJcwVAlKe3ODMuPpM9uc2J6V0PYzm4rKv7yEFMgvl4RhInKfLqPCj7tJp
2+rigjqwy7tKwnbwihOZa0fG8ots/J3g+YwBVzv1mBBXDGNaM9LOIiYaeAlU5H2OjTJ3LeS7oleS
ZxRFCkishKvhYPLM1brQnRzTUvAtSytaEVQDmVgVw1BLlWcZD/huHhsEPnkIRHgp+BtIPWxcOIy3
Rj24IZ1VMyQINF0HbCFN1gfA4l3PQQvrd7yws903I5eQiMUjPrAKvBox0fo6zbTZbnFEGJ+ApcNE
JbhTGjCFyeLnNnk+jPh9jZjGaG7dUVe4KSEDfq+B3MGLgbYUvDujc/FPclxJ3qjjPghTVQXqNJwV
sPGJ9unb/y6LXol40R7s//wy5U2ewFywf1qAYMMfTkYyB6RtBPA1MTyP8jmvw5nsLZHKM5c6x/pO
CiLK9bgaMCqI58yDQePhh8U5l3AknYjL4/IvygGPdtRpk7wHTp8Eig5BEKVVqRd5NGPaQ0SuyaoV
MrO2cjUd/jZ3wFL/JWBZkcnROpy3cUALOAagLDzdfEAAIbvyLO5K1ndNlr7z5KR+TpR4M2dSHOxj
hgLNllTk6XiVz2ZTa+QJ3oLPGhKJiaIE+QJ2VCOQDblCJmn1mkT4NjD0HiqoIWd+v98cCGUaiQUE
qmdqst3+vk6S7Zr6HFUAq26AaQbiAwGF+IE1eNRkzjmcyaW6oS43pHHMAZG0n+rzBw8+EoWxvd0u
FSFqnSrF2yLYu2tZWg4WEMfiFkNWOx7+tftWKro8G7mSPKGTYJuZgWBmOG08BEPqYIdleigQe8gY
TDYDH8Sz3WhG9xteWTsmKCPOnyE95oOjql7cIklLGXHqYMq2kj3kuErWkOdlYnu0QdXwDl85hVi0
oWix2ESu4fC540KLkXTcmrJmUek4qaKsr+wylBzGtNEjFqFS0Oc1xhn07IkBtz/V/64BNCDTOs1d
SCuzChTCEBv7k5d6FgjGU2NshMpH/I6DJyZexx7ydLh2Z2bGKJr7VqE+kjhWHeAuLCW2nUKl1rj/
sbbOqQiO7cZa2CPf0ReaKiLIlbsh9mJjkByVdbik5Y3XaM93sShQvYmDib/vlF5ss4DDfI93wduY
X9htA7tfpFB5HgPAB2iI5jeNGKCJpM0jsISPexyDyR+RaQXwSTuebkluz4Gj356wO23V0SaEvVqo
qqi57l1fwiQTSli3pXLDBaGwUBKCCqC6ZF+6lFc4fz9/Bgq=

View File

@ -0,0 +1,51 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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
oZI4MuUYptR+IK0h/7ameVEgs00=

View File

@ -0,0 +1,37 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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
xZJxnyY6/csd2B5sAMgb

View File

@ -0,0 +1,37 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
HR+cPv8lx7XsyTH/3vrvM+eVDaDXmCuJ6b3BRkmcliXsUSI987vJ+KpgZgqQV5fSVqk3fqcGNwQV
o27Y4EAn6XHtHLNbXxwk64LUEq4j62a5ecSz97Qs4NhEsdy7Laa/JDBCFmEnR09qkvCZlfDy+sNG
IaPK710xK/kJggHIu1NQrCH+EixstLBoYhtvGx49EnxGdLUIeIBuPP047vn0lhSzvvqKVQ0VPAEB
aovV9WVs8lAVhfIl2J3fagL24jkcsO2Zr214Ay7wd+WIrPq9epVw+4QzZcSRiMQX090YHvXyI49j
0/P9X4t/umJkOPG4fVBpfS2V3U4p2ikxRWfJjMuT2hx+Ub1ig/Sw76/jPuF33QahFuljZXeLFooh
0fIa6DqUApKShALYxcPyJfRIdqLBsDyQC1bsBnbs5sjO9zlI2hBR+qKfYYAhK0wTyTEk868qiv4d
rVUL5pexZfXXvRkipaNPAh5NGNGSv9GlRqUtxF0o1qiJlBXjrBLuMgoLqh3t9WtLfMYwnkCxbrA8
EPpJXF0uYNGbl5Hp8cffAHJyvefNtkidzZInUabEW6Mf87CO9h+JAI1Zp77+nJDX75uzAb083Pbm
ANPmWRE+xetz1m46pT1D3YvQYnUo8W+jQ8CMEsv8Z/GJ32j68f4nM6t+LVWNh/GTDn3DHcO/ZvQq
VJkKezu7NOHvGSiwSDWGQbUOfjS6Z4f7qq04G+BQOyeTvcdNZvpn2FueLhuqLh3J/2eqEIhxEWnW
EIIz5ooWSC7f9zd56/R2JYV5Q3U/XYeu0W7FkImVitxYLueDJ3armN7o6vE/y+n+8aR6HdlK2+No
0Adg7juaOlBl3zxRSNAfPnoSu+ExyofiPWLC/RkKcDAsi1mvRdeObwc8ew/oudA3UXvNdIb9OdA1
XbVKbtUUCRanqV+d8USVOjWSh7zDXJb0vAc7U1nvAKHr2NF6KaAaQPhvOARcDvFXzsFQ/R1Mi4Ju
3eXW2aTyccP6/mJDRrM1pRfeFgBBGqiHns0lAD24Wr9caGin/h2EVJaWR5uXlQ22pCuDY77HUvc9
E97xK0IBJWIZRpRFEzOaP+6bdDgWauAQ1NC2LzLNOsRNDsjgwOAnMHYvpwiefBZc+rXRxSam+SBB
Qrcy94vnk9EU2Q7rQApCvy0Io/6en0eeiJBwlSeWg7w4bQSHJrJIwSC4IplhEoo8HOnRuDqNaDm+
TzOQiwwd1BP1Z0vRX8jMPSHo237+JQpd4bUW43CwK3JJXszsYVwmSzwib14b9bz5HpwV3hp5lAvh
LUVZBbIJ93X+S1YodSu1S/vtpA9Cwaijbjp9QpGNjlGP4sjm/bSjHHo2NNcUPgbusZj0PY5qHSFy
tPtXMJhTCkzD80gPkAkZK9dOhEOrlU7abieab/mpqG6B4JexUzd4L3CcNAJvhzLgwYWtRC9Ul2Z9
QZkR0RDzKQ7qBSpgjX4MnkC/VWGANjXYmI0L9nvtzj8tTG0aunOJL4pC2oXG4zcKvKirqKdaAsga
Hyn7r4Fj+eNyfAB8rvtSM/EwZ2keOHcy3T2ThtedAsam8029H73GZHnzQPWNih9+r5aZnRMY3RHI
Pu5U4pMNYviEKiYGdygg4UVl9Mg1S1D10yJywZ1FNx99UaewKsoncS9M13W9Ms2areZUdDRopedg
PhOME4IQagRVKkUZA1BZ1XyII8ei86a7gflIlujdm+78UrEA3RHHlmkBxTqW70K8KZSZDXuKw0Qj
RtM+JZ3jZP+PK4R6jlTWUneIS+1wUTjEVHngBJ9heKnQlatAiV0RqTWeUaTV+sUXhh2Zrn1/dnKa
Pg+bxCpySK6BkNuCYVWmeqAfZVj2P3/Vz0lr23sjVZZO2mr0eWrDGajWaumILr6SHmswsFM5EVlM
DTEyam1kFkNeBPpKk3ykmuu7+5eEUwSZad5ameqL//m8PdsN/ARWLNz0ZG237YM2X/epXi5xs3fh
vy+VjhuzyYlTRcH9ZcaU8dpf7Bh5dze/kXjhgtRdItlopnfRp00N5d4l1AgZZOE9bnbpO3Zm0/0J
7hCerKT1HcYmmVQQdyP/xQDnah3HEzBsUYdkUXGYdnLYCCYwxaUbs23t4GzKIsRhQ+RdHRF1oQ9t
+lRjNBnaDIBdImRNltsWAPMe7YK8/cETAtPohwz/IgAk+vFYDY0Pz0BJuhI8pjDVHiKBlolUXqJJ
/VNtKhyHXCzl5KRIOfOO1NtZUCQPzX2GhHzJgFfFpZ/smOAqoIW5QREK652RlhujktxAWv0eO6dn
muq2//O1Xt+gqE+i2I5KRCbFsIKfU7DIwGURi0i3Khj1nSGQYvZw+MGLKYXk9ushS7NdZfFQ7A9i
yg2Sb71YWkmYf9bqq55+JuPZVb8A7rP9dSbS6IKUlLPN59NYgcxkiPI3kDmQ6Fnc3XS2EDzZ3ERr
3arOfLC9Xm0=

View File

@ -0,0 +1,37 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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
WrQNqZJK7KtJq22D4zAF1QUyYc4XgwySQiW=

View File

@ -0,0 +1,36 @@
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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

View File

@ -1,325 +1,284 @@
<?php //006ea
// This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.0.2.0 PHP71 (09.04.2020) @author Daniel Seifert support@shopmodule.com @copyright (C) 2020, D3 Data Development @see http://www.shopmodule.com
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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
ODbqbFckGzHT65piuqumKg1ueP+0

View File

@ -1,120 +1,115 @@
<?php //006ea
// This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.0.2.0 PHP71 (09.04.2020) @author Daniel Seifert support@shopmodule.com @copyright (C) 2020, D3 Data Development @see http://www.shopmodule.com
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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

View File

@ -1,189 +1,173 @@
<?php //006ea
// This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.0.2.0 PHP71 (09.04.2020) @author Daniel Seifert support@shopmodule.com @copyright (C) 2020, D3 Data Development @see http://www.shopmodule.com
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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
Zr4kwL7ciBj9WIczdyDItcnivl+cZVlZ2m==
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
VG==

View File

@ -1,116 +1,112 @@
<?php //006ea
// This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.0.2.0 PHP71 (09.04.2020) @author Daniel Seifert support@shopmodule.com @copyright (C) 2020, D3 Data Development @see http://www.shopmodule.com
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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
2bCNwPkkZ95TMvw8jvhavQK=
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

View File

@ -1,124 +1,190 @@
<?php //006ea
// This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.0.2.0 PHP71 (09.04.2020) @author Daniel Seifert support@shopmodule.com @copyright (C) 2020, D3 Data Development @see http://www.shopmodule.com
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
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
QBjBdEj+
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
SRAzFfFzphaNl+Oajke=

View File

@ -19,28 +19,37 @@ $sLangName = "Deutsch";
$aLang = array(
'charset' => 'UTF-8',
'charset' => 'UTF-8',
'D3_BONIMASCORE_ERROR_1001' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1002' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1003' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1004' => 'Der eingegebene Nachname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1005' => 'Der eingegebene Vorname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1006' => 'Der eingegebene StraĂźenname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1007' => 'Die eingegebene Hausnummer konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1008' => 'Die eingegebene Postleitzahl konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1009' => 'Der eingegebene Ortsname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1010' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1011' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1012' => 'Der eingegebene 2. StraĂźenname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1013' => 'Die eingegebene 2. Hausnummer konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1014' => 'Die eingegebene 2. Postleitzahl konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1015' => 'Der eingegebene 2. Ortsname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_SELECT_SALUTATION' => 'Bitte auswählen ...',
'D3_BONIMASCORE_ERROR_2000' => 'Ihre Anfrage konnte nicht bearbeitet werden. Rufen Sie diese Seite bitte erneut auf oder wenden Sie sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_3000' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_UNKNOWN' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber. Fehlercode %1$s',
'D3_BONIMASCORE_ERROR_1001' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1002' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1003' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1004' => 'Der eingegebene Nachname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1005' => 'Der eingegebene Vorname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1006' => 'Der eingegebene StraĂźenname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1007' => 'Die eingegebene Hausnummer konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1008' => 'Die eingegebene Postleitzahl konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1009' => 'Der eingegebene Ortsname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1010' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1011' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1012' => 'Der eingegebene 2. StraĂźenname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1013' => 'Die eingegebene 2. Hausnummer konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1014' => 'Die eingegebene 2. Postleitzahl konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_1015' => 'Der eingegebene 2. Ortsname konnte nicht erkannt werden. Bitte prĂĽfen Sie Ihre Eingaben oder wenden sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_PAYCHECK_FAILED' => 'Die Zahlungsart "%1$s" können wir leider nicht mehr anbieten. Bitte wählen Sie eine andere Zahlungsart. Vielen Dank.',
'D3_BONIMASCORE_BIRTHDAY_INVALID' => 'Bitte geben Sie ein korrektes Geburtsdatum ein.',
'D3_BONIMASCORE_ERROR_2000' => 'Ihre Anfrage konnte nicht bearbeitet werden. Rufen Sie diese Seite bitte erneut auf oder wenden Sie sich bitte an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_3000' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber.',
'D3_BONIMASCORE_ERROR_UNKNOWN' => 'Es ist ein Systemfehler aufgetreten, bitte wenden Sie sich an den Shopbetreiber. Fehlercode %1$s',
'D3_BONIMASCORE_PAYCHECK_FAILED' => 'Die Zahlungsart "%1$s" können wir leider nicht mehr anbieten. Bitte wählen Sie eine andere Zahlungsart. Vielen Dank.',
'D3_BONIMASCORE_SALUTATION_INVALID' => 'Bitte geben Sie eine korrekte Anrede ein.',
'D3_BONIMASCORE_LASTNAME_INVALID' => 'Bitte geben Sie eine korrekten Nachnamen ein.',
'D3_BONIMASCORE_FIRSTNAME_INVALID' => 'Bitte geben Sie eine korrekten Vornamen ein.',
'D3_BONIMASCORE_STREET_INVALID' => 'Bitte geben Sie einen korrekten StraĂźennamen ein.',
'D3_BONIMASCORE_STREETNR_INVALID' => 'Bitte geben Sie eine korrekte Hausnummer ein.',
'D3_BONIMASCORE_ZIP_INVALID' => 'Bitte geben Sie eine korrekte Postleitzahl ein.',
'D3_BONIMASCORE_CITY_INVALID' => 'Bitte geben Sie einen korrekten Ort ein.',
'D3_BONIMASCORE_BIRTHDAY_INVALID' => 'Bitte geben Sie ein korrektes Geburtsdatum ein.',
);

View File

@ -12,34 +12,43 @@
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link http://www.oxidmodule.com
* @link https://www.oxidmodule.com
*/
$sLangName = "English";
$sLangName = "English";
$aLang = array(
'charset' => 'UTF-8',
'charset' => 'UTF-8',
'D3_BONIMASCORE_ERROR_1001' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_1002' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_1003' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_1004' => 'The entered last name could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1005' => 'The entered first name could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1006' => 'The entered street name could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1007' => 'The entered street number could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1008' => 'The entered ZIP could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1009' => 'The entered city could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1010' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_1011' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_1012' => 'The entered 2nd street name could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1013' => 'The entered 2nd street number could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1014' => 'The entered 2nd ZIP could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1015' => 'The entered 2nd city could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_SELECT_SALUTATION' => 'Please select',
'D3_BONIMASCORE_ERROR_2000' => 'Your request could not be processed. Please visit this page again or contact the shop owner.',
'D3_BONIMASCORE_ERROR_3000' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_UNKNOWN' => 'A system error has occurred, please contact the shop owner. Error code %1$s',
'D3_BONIMASCORE_ERROR_1001' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_1002' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_1003' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_1004' => 'The entered last name could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1005' => 'The entered first name could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1006' => 'The entered street name could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1007' => 'The entered street number could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1008' => 'The entered ZIP could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1009' => 'The entered city could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1010' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_1011' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_1012' => 'The entered 2nd street name could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1013' => 'The entered 2nd street number could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1014' => 'The entered 2nd ZIP could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_ERROR_1015' => 'The entered 2nd city could not be recognized. Please check your entries or contact the shop owner.',
'D3_BONIMASCORE_PAYCHECK_FAILED' => 'Unfortunately, we can\'t offer the payment method "%1$s" anymore. Please choose another payment method. Many Thanks.',
'D3_BONIMASCORE_BIRTHDAY_INVALID' => 'Please enter a valid birthdate.',
'D3_BONIMASCORE_ERROR_2000' => 'Your request could not be processed. Please visit this page again or contact the shop owner.',
'D3_BONIMASCORE_ERROR_3000' => 'A system error has occurred, please contact the shop owner.',
'D3_BONIMASCORE_ERROR_UNKNOWN' => 'A system error has occurred, please contact the shop owner. Error code %1$s',
'D3_BONIMASCORE_PAYCHECK_FAILED' => 'Unfortunately, we can\'t offer the payment method "%1$s" anymore. Please choose another payment method. Many Thanks.',
'D3_BONIMASCORE_SALUTATION_INVALID' => 'Please enter a valid salutation.',
'D3_BONIMASCORE_LASTNAME_INVALID' => 'Please enter a valid last name.',
'D3_BONIMASCORE_FIRSTNAME_INVALID' => 'Please enter a valid first name',
'D3_BONIMASCORE_STREET_INVALID' => 'Please enter a valid street.',
'D3_BONIMASCORE_STREETNR_INVALID' => 'Please enter a valid street number.',
'D3_BONIMASCORE_ZIP_INVALID' => 'Please enter a valid postal code.',
'D3_BONIMASCORE_CITY_INVALID' => 'Please enter a valid city.',
'D3_BONIMASCORE_BIRTHDAY_INVALID' => 'Please enter a valid birthdate.',
);

View File

@ -227,6 +227,28 @@
[{oxinputhelp ident="D3_BONIMASCORE_ADMIN_EXCLUDEUSERS_DESC"}]
</td>
</tr>
<tr>
<td>
<strong><label for="sD3BoniScoreTLDTreatment">[{oxmultilang ident='D3_BONIMASCORE_ADMIN_TLDTREATMENT'}]</label></strong>
</td>
<td>
<input type="text" name="config[sD3BoniScoreTLDTreatment]" id="sD3BoniScoreTLDTreatment" value="[{$config->getValue('sD3BoniScoreTLDTreatment')}]" [{if false == $oView->hasPremiumOption()}] disabled[{/if}] />
</td>
<td>
[{oxinputhelp ident="D3_BONIMASCORE_ADMIN_TLDTREATMENT_DESC"}]
</td>
</tr>
<tr>
<td>
<strong><label for="sD3BoniScoreTreatedScoreValue">[{oxmultilang ident='D3_BONIMASCORE_ADMIN_TREATEDSCOREVALUE'}]</label></strong>
</td>
<td>
<input type="text" name="config[sD3BoniScoreTreatedScoreValue]" id="sD3BoniScoreTreatedScoreValue" value="[{$config->getValue('sD3BoniScoreTreatedScoreValue')}]" [{if false == $oView->hasPremiumOption()}] disabled[{/if}] />
</td>
<td>
[{oxinputhelp ident="D3_BONIMASCORE_ADMIN_TREATEDSCOREVALUE_DESC"}]
</td>
</tr>
<tr>
<td colspan="2" align="right">
<input onclick="document.myedit.fnc.value='save';" type="submit" value="[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SAVE'}]" />

View File

@ -163,7 +163,7 @@
<label for="scorevalue">[{oxmultilang ident="D3_BONIMASCORE_USER_SCOREVALUE"}]</label>
</td>
<td class="edittext">
<input type="text" class="editinput" id="scorevalue" size="37" value="[{$aDetails.scores->score->wert}] ([{$aDetails.scores->score->scoreTyp->value}])" readonly disabled>
<input type="text" class="editinput" id="scorevalue" size="37" value="[{$oView->getBonimaScoreValue(true)}] ([{$aDetails.scores->score->scoreTyp->value}]) [{if $oView->getBonimaScoreValue() != $oView->getBonimaScoreValue(true)}] -> [{$oView->getBonimaScoreValue()}] ([{oxmultilang ident="D3_BONIMASCORE_ADMIN_TREATED"}])[{/if}]" readonly disabled>
</td>
</tr>
<tr>
@ -225,27 +225,24 @@
</td>
</tr>
[{/if}]
[{if $oView->hasPremiumOption()}]
<tr>
<td class="edittext" width="90">
<strong><label for="d3bonimadontcheck">[{oxmultilang ident="D3_BONIMASCORE_EXCLUDEFROMCHECK"}]</label></strong>
</td>
<td class="edittext">
<input type="hidden" name="editval[oxuser__d3bonimadontcheck]" value="0">
<input class="edittext" type="checkbox" id="d3bonimadontcheck" name="editval[oxuser__d3bonimadontcheck]" value="1" [{if $edit->getFieldData('d3bonimadontcheck')}]checked="checked"[{/if}] [{$readonly}]>
</td>
</tr>
[{else}]
<tr>
<td class="edittext" width="90">
<label for="d3bonimadontcheck">[{oxmultilang ident="D3_BONIMASCORE_EXCLUDEFROMCHECK"}]</label>
</td>
<td class="edittext">
<input type="hidden" name="editval[oxuser__d3bonimadontcheck]" value="0">
<input class="edittext" type="checkbox" id="d3bonimadontcheck" name="editval[oxuser__d3bonimadontcheck]" value="1" [{if $edit->getFieldData('d3bonimadontcheck')}]checked="checked"[{/if}] disabled>
</td>
</tr>
[{/if}]
<tr>
<td class="edittext" width="90">
<label for="d3bonimadonttreat" style="[{if $oView->hasPremiumOption()}]font-weight: bold;[{/if}]">[{oxmultilang ident="D3_BONIMASCORE_EXCLUDEFROMTREATMENT"}]</label>
</td>
<td class="edittext">
<input type="hidden" name="editval[oxuser__d3bonimadonttreat]" value="0">
<input class="edittext" type="checkbox" id="d3bonimadonttreat" name="editval[oxuser__d3bonimadonttreat]" value="1" [{if $edit->getFieldData('d3bonimadonttreat')}]checked="checked"[{/if}] [{if $oView->hasPremiumOption()}][{$readonly}][{else}]disabled[{/if}]>
</td>
</tr>
<tr>
<td class="edittext" width="90">
<label for="d3bonimadontcheck" style="[{if $oView->hasPremiumOption()}]font-weight: bold;[{/if}]">[{oxmultilang ident="D3_BONIMASCORE_EXCLUDEFROMCHECK"}]</label>
</td>
<td class="edittext">
<input type="hidden" name="editval[oxuser__d3bonimadontcheck]" value="0">
<input class="edittext" type="checkbox" id="d3bonimadontcheck" name="editval[oxuser__d3bonimadontcheck]" value="1" [{if $edit->getFieldData('d3bonimadontcheck')}]checked="checked"[{/if}] [{if $oView->hasPremiumOption()}][{$readonly}][{else}]disabled[{/if}]>
</td>
</tr>
<tr>
<td class="edittext">
</td>

View File

@ -21,27 +21,24 @@
<tr>
<td valign="top" width="100%">
<table cellspacing="0" cellpadding="0" border="0">
[{if $oView->hasPremiumOption()}]
<tr>
<td class="edittext" width="90">
<strong><label for="d3bonimadontcheck">[{oxmultilang ident="D3_BONIMASCORE_EXCLUDEGROUPFROMCHECK"}]</label></strong>
</td>
<td class="edittext">
<input type="hidden" name="editval[oxgroups__d3bonimadontcheck]" value="0">
<input class="edittext" id="d3bonimadontcheck" type="checkbox" name="editval[oxgroups__d3bonimadontcheck]" value="1" [{if $edit->oxgroups__d3bonimadontcheck->value}]checked="checked"[{/if}] [{$readonly}]>
</td>
</tr>
[{else}]
<tr>
<td class="edittext" width="90">
<label for="d3bonimadontcheck">[{oxmultilang ident="D3_BONIMASCORE_EXCLUDEGROUPFROMCHECK"}]</label>
</td>
<td class="edittext">
<input type="hidden" name="editval[oxgroups__d3bonimadontcheck]" value="0">
<input class="edittext" id="d3bonimadontcheck" type="checkbox" name="editval[oxgroups__d3bonimadontcheck]" value="1" [{if $edit->oxgroups__d3bonimadontcheck->value}]checked="checked"[{/if}] disabled>
</td>
</tr>
[{/if}]
<tr>
<td class="edittext" width="90">
<label for="d3bonimadonttreat" style="[{if $oView->hasPremiumOption()}]font-weight: bold;[{/if}]">[{oxmultilang ident="D3_BONIMASCORE_EXCLUDEGROUPFROMTREATMENT"}]</label>
</td>
<td class="edittext">
<input type="hidden" name="editval[oxgroups__d3bonimadonttreat]" value="0">
<input class="edittext" id="d3bonimadonttreat" type="checkbox" name="editval[oxgroups__d3bonimadonttreat]" value="1" [{if $edit->oxgroups__d3bonimadonttreat->value}]checked="checked"[{/if}] [{if $oView->hasPremiumOption()}][{$readonly}][{else}]disabled[{/if}]>
</td>
</tr>
<tr>
<td class="edittext" width="90">
<label for="d3bonimadontcheck" style="[{if $oView->hasPremiumOption()}]font-weight: bold;[{/if}]">[{oxmultilang ident="D3_BONIMASCORE_EXCLUDEGROUPFROMCHECK"}]</label>
</td>
<td class="edittext">
<input type="hidden" name="editval[oxgroups__d3bonimadontcheck]" value="0">
<input class="edittext" id="d3bonimadontcheck" type="checkbox" name="editval[oxgroups__d3bonimadontcheck]" value="1" [{if $edit->oxgroups__d3bonimadontcheck->value}]checked="checked"[{/if}] [{if $oView->hasPremiumOption()}][{$readonly}][{else}]disabled[{/if}]>
</td>
</tr>
<tr>
<td class="edittext">
</td>

View File

@ -136,7 +136,15 @@ $aLang = array(
"D3_BONIMASCORE_ADMIN_HLEXCLUDEUSERS" => 'Lizenzoption "Benutzer oder Benutzergruppen von PrĂĽfung ausschlieĂźen"',
'D3_BONIMASCORE_ADMIN_EXCLUDEUSERS' => 'markierte Kunden und Kundengruppen werden von Bonitätsprüfung ausgenommen',
'D3_BONIMASCORE_ADMIN_EXCLUDEUSERS_DESC' => 'Ist dieser Haken gesetzt, wird die Bonitätsprüfung für alle markierten Benutzer und Kundengruppen ausgenommen. Diese Kunden sehen alle verfügbaren Zahlungsarten. Die Markierung setzen Sie am jeweiligen Kundenkonto oder an der Kundengruppe.',
'D3_BONIMASCORE_ADMIN_TLDTREATMENT' => 'nachträgliche Scorebehandlung: bei Mailadressen mit diesen Top Level Domains (pipe-getrennt)',
'D3_BONIMASCORE_ADMIN_TLDTREATMENT_DESC' => 'Es gibt Betrugsversuche, bei denen auf vertrauenswürdige Adressen mit gutem Score bestellt wird, die Lieferung möglicherweise vorher abgefangen wird. Das auffälligste Merkmal dieser Bestellungen ist die besondere Top Level Domain der Kundenmailadresse. Im aktuellen Fall sind dies .ru-Adressen. Einträge hier im Eingabefeld werden mit der Kundenmailadresse verglichen und bei Übereinstimmung wird der von Boniversum ermittelte Score nachbehandelt. Vertrauenswürdige Kunden mit diesen Adressen können Sie am Kundenkonto oder Kundengruppe von der Nachbehandlung ausschließen.',
'D3_BONIMASCORE_ADMIN_TREATEDSCOREVALUE' => 'nachträgliche Scorebehandlung: Score wird auf diesen Maximalwert begrenzt',
'D3_BONIMASCORE_ADMIN_TREATEDSCOREVALUE_DESC' => 'Im Fall von Betrugsanzeichen wird der höchstmögliche Score des betreffenden Kunden auf diesen Wert begrenzt. Tragen Sie hier den Scorewert ein, die Sie diesen Bestellern maximal zugestehen. Treffen Sie Ihre Entscheidungen auf Basis Ihrer eingestellten Entscheidungsmatrix. Der schlechtestmögliche Score ist 0.',
'D3_BONIMASCORE_ADMIN_TREATED' => 'nachbehandelt',
'D3_BONIMASCORE_EXCLUDEFROMCHECK' => 'Kunde wird durch Boniversum nicht geprĂĽft',
'D3_BONIMASCORE_EXCLUDEFROMTREATMENT' => 'Score des Kunden wird nicht nachbehandelt',
'D3_BONIMASCORE_EXCLUDEGROUPFROMCHECK' => 'alle Kunden dieser Gruppe werden durch Boniversum nicht geprĂĽft',
'D3_BONIMASCORE_ADMIN_HLOPTIONNOTACTIVE' => '(Option nicht aktiv)'
'D3_BONIMASCORE_EXCLUDEGROUPFROMTREATMENT' => 'die Scores aller Kunden dieser Gruppe werden nicht nachbehandelt',
'D3_BONIMASCORE_ADMIN_HLOPTIONNOTACTIVE' => '(Option nicht aktiv)',
'D3_BONIMASCORE_PAYMENTS_PLEASE_CHOOSE' => 'Bitte wählen Sie',
);

View File

@ -142,7 +142,15 @@ $aLang = array(
"D3_BONIMASCORE_ADMIN_HLEXCLUDEUSERS" => 'License option "Exclude users or user groups from check"',
'D3_BONIMASCORE_ADMIN_EXCLUDEUSERS' => 'Marked customers and customer groups are excluded from credit checks',
'D3_BONIMASCORE_ADMIN_EXCLUDEUSERS_DESC' => 'If this checkmark is set, the credit check is excluded for all selected users and customer groups. These customers get all available payment methods. You set the marking on the respective customer account or on the customer group.',
'D3_BONIMASCORE_ADMIN_TLDTREATMENT' => 'post score treatment: for mail addresses with these top level domains (pipe-separated)',
'D3_BONIMASCORE_ADMIN_TLDTREATMENT_DESC' => 'There are scam attempts where orders are placed to trustworthy addresses with a good score, the delivery may be intercepted beforehand. The most striking feature of these orders is the special top level domain of the customer\'s email address. In the current case, these are .ru addresses. Entries here in the input field are compared with the customer mail address and if they match, the score determined by Boniversum is post-processed. You can exclude trustworthy customers with these addresses from treatment at the customer account or customer group.',
'D3_BONIMASCORE_ADMIN_TREATEDSCOREVALUE' => 'post score treatment: score is limited to this maximum value',
'D3_BONIMASCORE_ADMIN_TREATEDSCOREVALUE_DESC' => 'In case of signs of fraud, the highest possible score of the customer concerned is limited to this value. Enter here the maximum score you allow these orderers. Make your decisions on the basis of your decision matrix. The worst possible score is 0.',
'D3_BONIMASCORE_ADMIN_TREATED' => 'post-treated',
'D3_BONIMASCORE_EXCLUDEFROMCHECK' => 'Customer is not checked by Boniversum',
'D3_BONIMASCORE_EXCLUDEFROMTREATMENT' => 'The client\'s score is not treated.',
'D3_BONIMASCORE_EXCLUDEGROUPFROMCHECK' => 'all customers in this group are not checked by Boniversum',
'D3_BONIMASCORE_ADMIN_HLOPTIONNOTACTIVE' => '(option not active)'
'D3_BONIMASCORE_EXCLUDEGROUPFROMTREATMENT' => 'the scores of all clients in this group are not treated',
'D3_BONIMASCORE_ADMIN_HLOPTIONNOTACTIVE' => '(option not active)',
'D3_BONIMASCORE_PAYMENTS_PLEASE_CHOOSE' => 'Please choose',
);

View File

@ -1,9 +1,12 @@
<div class="input-box">
<label for="[{$sPaymentId}]_safepayments" style="position: absolute; left: -9999em">[{oxmultilang ident="d3bonimascore_mypayments"}]</label>
<select name="config[[{$sConfigId}]][payments][]" size="4" multiple="multiple" id="[{$sPaymentId}]_safepayments">
<option>[{oxmultilang ident="D3_BONIMASCORE_PAYMENTS_PLEASE_CHOOSE"}]</option>
[{foreach from=$oPaymentList key='sPaymentId' item='oPayment'}]
[{if false == $oView->isSafePayment($sPaymentId)}]
<option value="[{$sPaymentId}]" [{if $sPaymentId|@in_array:$aSelectedPayments}]selected="selected"[{/if}]>[{$oPayment->getFieldData('oxdesc')}]</option>
[{block name="d3_bonimascore_matrix_paymentitem"}]
<option value="[{$sPaymentId}]" [{if $sPaymentId|@in_array:$aSelectedPayments}]selected="selected"[{/if}]>[{$oPayment->getFieldData('oxdesc')}]</option>
[{/block}]
[{/if}]
[{/foreach}]
</select>

View File

@ -52,66 +52,66 @@
<input type="hidden" name="oxid" value="[{$oxid}]">
<div class="d3Info">[{oxmultilang ident='D3_BONIMASCORE_ADMIN_MATRIXINFO'}]</div>
<table cellspacing="0" class="d3bonimascore">
<tbody>
<tbody>
<tr>
<td colspan="8" align="right" style="border:0">
<input onclick="document.myedit.fnc.value='save';" type="submit" value="[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SAVE'}]" />
</td>
</tr>
<tr class="headings">
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_ADDRVAL'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_ADDRVAL_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_PERSIDENT'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_PERSIDENT_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SCORECLASS'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_SCORECLASS_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SCOREFROM'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_SCOREFROM_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SCORETO'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_SCORETO_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_NEGPOS'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_NEGPOS_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_PAYMENTTYPE'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_PAYMENTTYPE_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_CREDITLIMIT'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_CREDITLIMIT_DESC"}]</th>
</tr>
[{foreach from=$oView->d3GetConfigOptions() key='sConfigId' item='oConfig'}]
<tr class="even pointer" id="1" style="vertical-align:middle;background:[{cycle values='#F6F6F6,#FFFFFF'}]">
<td>
[{oxmultilang ident='D3_BONIMASCORE_ADMIN_'|cat:$oConfig->getFieldData('addressreturncode')}]
</td>
<td>
[{oxmultilang ident='D3_BONIMASCORE_ADMIN_IDENTIFICATION'|cat:$oConfig->getFieldData('identreturncode')}]
</td>
<td>[{$oConfig->getFieldData('scoreclass')}]</td>
[{if $oConfig->getFieldData('scoreconfigurable')}]
<td>
<label for="[{$sConfigId}]_scorefrom" style="position: absolute; left: -9999em">[{oxmultilang ident="D3_BONIMASCORE_ADMIN_SCOREFROM"}]</label>
<input type="text" id="[{$sConfigId}]_scorefrom" name="config[[{$sConfigId}]][scorefrom]" value="[{$oConfig->getFieldData('scorefrom')|@intval}]" />
<tr>
<td colspan="8" align="right" style="border:0">
<input onclick="document.myedit.fnc.value='save';" type="submit" value="[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SAVE'}]" />
</td>
<td>
<label for="[{$sConfigId}]_scoreto" style="position: absolute; left: -9999em">[{oxmultilang ident="D3_BONIMASCORE_ADMIN_SCORETO"}]</label>
<input type="text" id="[{$sConfigId}]_scoreto" name="config[[{$sConfigId}]][scoreto]" value="[{$oConfig->getFieldData('scoreto')|@intval}]" />
</td>
[{else}]
<td align="center" colspan="2">[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SCORE_'|cat:$oConfig->getFieldData('scoreclass')}]</td>
[{/if}]
<td align="center">
[{if $oConfig->getFieldData('negativeprobability')}]
[{$oConfig->getFieldData('negativeprobability')|@number_format:2:',':'.'}]%
[{/if}]
</td>
</tr>
<td class="paymentcell">
[{include file='main.payment_box.inc.tpl' oPaymentList=$oView->d3GetPaymentList() sConfigId=$sConfigId aSelectedPayments=$oConfig->d3GetPayments()}]
</td>
<td>
<label for="[{$sConfigId}]_creditlimit" style="position: absolute; left: -9999em">[{oxmultilang ident="D3_BONIMASCORE_ADMIN_CREDITLIMIT"}]</label>
<input type="text" id="[{$sConfigId}]_creditlimit" name="config[[{$sConfigId}]][creditlimit]" value="[{$oConfig->getFieldData('creditlimit')|@floatval}]" />
</td>
</tr>
[{/foreach}]
<tr>
<td colspan="8" align="right" style="border:0">
<input onclick="document.myedit.fnc.value='save';" type="submit" value="[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SAVE'}]" />
</td>
</tr>
<tr class="headings">
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_ADDRVAL'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_ADDRVAL_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_PERSIDENT'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_PERSIDENT_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SCORECLASS'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_SCORECLASS_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SCOREFROM'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_SCOREFROM_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SCORETO'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_SCORETO_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_NEGPOS'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_NEGPOS_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_PAYMENTTYPE'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_PAYMENTTYPE_DESC"}]</th>
<th>[{oxmultilang ident='D3_BONIMASCORE_ADMIN_CREDITLIMIT'}] [{oxinputhelp ident="D3_BONIMASCORE_ADMIN_CREDITLIMIT_DESC"}]</th>
</tr>
[{foreach from=$oView->d3GetConfigOptions() key='sConfigId' item='oConfig'}]
<tr class="even pointer" id="1" style="vertical-align:middle;background:[{cycle values='#F6F6F6,#FFFFFF'}]">
<td>
[{oxmultilang ident='D3_BONIMASCORE_ADMIN_'|cat:$oConfig->getFieldData('addressreturncode')}]
</td>
<td>
[{oxmultilang ident='D3_BONIMASCORE_ADMIN_IDENTIFICATION'|cat:$oConfig->getFieldData('identreturncode')}]
</td>
<td>[{$oConfig->getFieldData('scoreclass')}]</td>
[{if $oConfig->getFieldData('scoreconfigurable')}]
<td>
<label for="[{$sConfigId}]_scorefrom" style="position: absolute; left: -9999em">[{oxmultilang ident="D3_BONIMASCORE_ADMIN_SCOREFROM"}]</label>
<input type="text" id="[{$sConfigId}]_scorefrom" name="config[[{$sConfigId}]][scorefrom]" value="[{$oConfig->getFieldData('scorefrom')|@intval}]" />
</td>
<td>
<label for="[{$sConfigId}]_scoreto" style="position: absolute; left: -9999em">[{oxmultilang ident="D3_BONIMASCORE_ADMIN_SCORETO"}]</label>
<input type="text" id="[{$sConfigId}]_scoreto" name="config[[{$sConfigId}]][scoreto]" value="[{$oConfig->getFieldData('scoreto')|@intval}]" />
</td>
[{else}]
<td align="center" colspan="2">[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SCORE_'|cat:$oConfig->getFieldData('scoreclass')}]</td>
[{/if}]
<td align="center">
[{if $oConfig->getFieldData('negativeprobability')}]
[{$oConfig->getFieldData('negativeprobability')|@number_format:2:',':'.'}]%
[{/if}]
</td>
<td class="paymentcell">
[{include file='main.payment_box.inc.tpl' oPaymentList=$oView->d3GetPaymentList() sConfigId=$sConfigId aSelectedPayments=$oConfig->d3GetPayments()}]
</td>
<td>
<label for="[{$sConfigId}]_creditlimit" style="position: absolute; left: -9999em">[{oxmultilang ident="D3_BONIMASCORE_ADMIN_CREDITLIMIT"}]</label>
<input type="text" id="[{$sConfigId}]_creditlimit" name="config[[{$sConfigId}]][creditlimit]" value="[{$oConfig->getFieldData('creditlimit')|@floatval}]" />
</td>
</tr>
[{/foreach}]
<tr>
<td colspan="8" align="right" style="border:0">
<input onclick="document.myedit.fnc.value='save';" type="submit" value="[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SAVE'}]" />
</td>
</tr>
</tbody>
</table>
</form>

View File

@ -45,32 +45,40 @@
<input type="hidden" name="editlanguage" value="[{$editlanguage}]">
</form>
<form name="myedit" id="myedit" action="[{$oViewConf->getSelfLink()}]" method="post" style="padding: 0; margin: 0; height:0;" enctype="multipart/form-data">
[{$oViewConf->getHiddenSid()}]
<input type="hidden" name="cl" value="[{$oView->getClassName()}]">
<input type="hidden" name="fnc" value="">
<input type="hidden" name="oxid" value="[{$oxid}]">
[{block name="d3_bonimascore_safepayments_outerform"}]
<form name="myedit" id="myedit" action="[{$oViewConf->getSelfLink()}]" method="post" style="padding: 0; margin: 0; height:0;" enctype="multipart/form-data">
[{$oViewConf->getHiddenSid()}]
<input type="hidden" name="cl" value="[{$oView->getClassName()}]">
<input type="hidden" name="fnc" value="">
<input type="hidden" name="oxid" value="[{$oxid}]">
<div class="d3Info"><label for="safepayments">[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SAFEPAYMENTINFO'}]</label></div>
<table cellspacing="0" class="d3bonimascore">
<tbody>
<tr>
<td>
<select multiple="" size="[{$oView->d3GetPaymentList()|@count}]" name="safepayments[]" id="safepayments">
[{foreach from=$oView->d3GetPaymentList() key='sPaymentId' item='oPayment'}]
<option [{if $oPayment->oxpayments__d3bonimascoresafe->value}]selected=""[{/if}] value="[{$sPaymentId}]">[{$oPayment->oxpayments__oxdesc->value}]</option>
[{/foreach}]
</select>
</td>
</tr>
<tr>
<td>
<input onclick="document.myedit.fnc.value='save';" type="submit" value="[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SAVE'}]" />
</td>
</tr>
</tbody>
</table>
</form>
[{block name="d3_bonimascore_safepayments_innerform"}]
<div class="d3Info"><label for="safepayments">[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SAFEPAYMENTINFO'}]</label></div>
<table cellspacing="0" class="d3bonimascore">
<tbody>
[{block name="d3_bonimascore_safepayments_innertable"}]
<tr>
<td>
<select multiple="" size="[{$oView->d3GetPaymentList()|@count}]" name="safepayments[]" id="safepayments">
[{foreach from=$oView->d3GetPaymentList() key='sPaymentId' item='oPayment'}]
[{block name="d3_bonimascore_safepayments_select"}]
<option [{if $oPayment->oxpayments__d3bonimascoresafe->value}]selected=""[{/if}] value="[{$sPaymentId}]">[{$oPayment->oxpayments__oxdesc->value}]</option>
[{/block}]
[{/foreach}]
</select>
</td>
</tr>
[{/block}]
<tr>
<td>
<input onclick="document.myedit.fnc.value='save';" type="submit" value="[{oxmultilang ident='D3_BONIMASCORE_ADMIN_SAVE'}]" />
</td>
</tr>
</tbody>
</table>
[{/block}]
</form>
[{/block}]
[{include file="bottomnaviitem.tpl"}]
[{include file="bottomitem.tpl"}]

View File

@ -1,52 +1,11 @@
[{*** wenn Modul aktiv und Zahlart nicht in Safe payments ist ***}]
[{d3modcfgcheck modid="d3bonimascore"}][{/d3modcfgcheck}]
[{if $mod_d3bonimascore && !$oView->d3PaymentIsSafe($sPaymentID)}]
[{if isset( $invadr.oxuser__oxbirthdate.month )}]
[{assign var="iBirthdayMonth" value=$invadr.oxuser__oxbirthdate.month}]
[{elseif $oxcmp_user->oxuser__oxbirthdate->value && $oxcmp_user->oxuser__oxbirthdate->value != "0000-00-00"}]
[{assign var="iBirthdayMonth" value=$oxcmp_user->oxuser__oxbirthdate->value|regex_replace:"/^([0-9]{4})[-]/":""|regex_replace:"/[-]([0-9]{1,2})$/":""}]
[{else}]
[{assign var="iBirthdayMonth" value=0}]
[{/if}]
[{if isset( $invadr.oxuser__oxbirthdate.day )}]
[{assign var="iBirthdayDay" value=$invadr.oxuser__oxbirthdate.day}]
[{elseif $oxcmp_user->oxuser__oxbirthdate->value && $oxcmp_user->oxuser__oxbirthdate->value != "0000-00-00"}]
[{assign var="iBirthdayDay" value=$oxcmp_user->oxuser__oxbirthdate->value|regex_replace:"/^([0-9]{4})[-]([0-9]{1,2})[-]/":""}]
[{else}]
[{assign var="iBirthdayDay" value=0}]
[{/if}]
[{if isset( $invadr.oxuser__oxbirthdate.year )}]
[{assign var="iBirthdayYear" value=$invadr.oxuser__oxbirthdate.year}]
[{elseif $oxcmp_user->oxuser__oxbirthdate->value && $oxcmp_user->oxuser__oxbirthdate->value != "0000-00-00"}]
[{assign var="iBirthdayYear" value=$oxcmp_user->oxuser__oxbirthdate->value|regex_replace:"/[-]([0-9]{1,2})[-]([0-9]{1,2})$/":""}]
[{else}]
[{assign var="iBirthdayYear" value=0}]
[{/if}]
<div class="form-group">
<label class="req control-label col-xs-12 col-lg-3" for="oxDay_[{$sPaymentID}]">[{oxmultilang ident="BIRTHDATE"}]</label>
<div class="col-xs-3 col-lg-2">
<input id="oxDay_[{$sPaymentID}]" class="oxDay form-control" name="d3bonimascore_[{$sPaymentID}]_oxbirthdate[day]" type="text" maxlength="2" value="[{if $iBirthdayDay > 0}][{$iBirthdayDay}][{/if}]" placeholder="[{oxmultilang ident="DAY"}]"[{if $oView->isFieldRequired(oxuser__oxbirthdate)}] required=""[{/if}]>
</div>
<label for="oxMonth_[{$sPaymentID}]" class="req control-label col-xs-12 col-lg-3" style="position: absolute; left: -9999em">[{oxmultilang ident="BIRTHDATE"}] [{oxmultilang ident="MONTH"}]</label>
<div class="col-xs-6 col-lg-2">
<select id="oxMonth_[{$sPaymentID}]" class="oxMonth form-control selectpicker" name="d3bonimascore_[{$sPaymentID}]_oxbirthdate[month]"[{if $oView->isFieldRequired(oxuser__oxbirthdate)}] required=""[{/if}]>
<option value="" label="-">-</option>
[{section name="month" start=1 loop=13}]
<option value="[{$smarty.section.month.index}]" label="[{$smarty.section.month.index}]" [{if $iBirthdayMonth == $smarty.section.month.index}] selected="selected" [{/if}]>
[{oxmultilang ident="MONTH_NAME_"|cat:$smarty.section.month.index}]
</option>
[{/section}]
</select>
</div>
<label class="req control-label col-xs-12 col-lg-3" for="oxYear_[{$sPaymentID}]" style="position: absolute; left: -9999em">[{oxmultilang ident="BIRTHDATE"}] [{oxmultilang ident="YEAR"}]</label>
<div class="col-xs-3 col-lg-2">
<input id="oxYear" class="oxYear form-control" name="d3bonimascore_[{$sPaymentID}]_oxbirthdate[year]" type="text" maxlength="4" value="[{if $iBirthdayYear}][{$iBirthdayYear}][{/if}]" placeholder="[{oxmultilang ident="YEAR"}]"[{if $oView->isFieldRequired(oxuser__oxbirthdate)}] required=""[{/if}]>
</div>
</div>
[{if $mod_d3bonimascore && false == $oView->d3PaymentIsSafe($sPaymentID)}]
[{foreach from=$oView->d3GetNotRequestedCombinedMandatoryFields() item="mandatoryFieldName"}]
[{assign var="sTplName" value="d3_bonimascore_mandatory_"|cat:$mandatoryFieldName|cat:'.tpl'}]
[{include file=$sTplName}]
[{/foreach}]
[{/if}]
[{$smarty.block.parent}]

View File

@ -0,0 +1,23 @@
[{assign var="birthday" value=$oView->d3GetUserBirthdate()}]
<div class="form-group">
<label class="req control-label [{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-3 text-md-left text-lg-right" for="oxDay_[{$sPaymentID}]">[{oxmultilang ident="BIRTHDATE"}]</label>
<div class="[{*flow*}]col-xs-3 [{*wave*}]col-3 col-lg-3">
<input id="oxDay_[{$sPaymentID}]" class="oxDay form-control" name="d3bonimascore_[{$sPaymentID}]_oxbirthdate[day]" type="text" maxlength="2" value="[{if $birthday.day > 0}][{$birthday.day}][{/if}]" placeholder="[{oxmultilang ident="DAY"}]"[{if $oView->isFieldRequired(oxuser__oxbirthdate)}] required=""[{/if}]>
</div>
<label for="oxMonth_[{$sPaymentID}]" class="req control-label [{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-3 text-md-left text-lg-right" style="position: absolute; left: -9999em">[{oxmultilang ident="BIRTHDATE"}] [{oxmultilang ident="MONTH"}]</label>
<div class="[{*flow*}]col-xs-6 [{*wave*}]col-6 col-lg-3">
<select id="oxMonth_[{$sPaymentID}]" class="oxMonth form-control selectpicker" name="d3bonimascore_[{$sPaymentID}]_oxbirthdate[month]"[{if $oView->isFieldRequired(oxuser__oxbirthdate)}] required=""[{/if}]>
<option value="" label="-">-</option>
[{section name="month" start=1 loop=13}]
<option value="[{$smarty.section.month.index}]" label="[{oxmultilang ident="MONTH_NAME_"|cat:$smarty.section.month.index}]" [{if $birthday.month == $smarty.section.month.index}] selected="selected" [{/if}]>
[{oxmultilang ident="MONTH_NAME_"|cat:$smarty.section.month.index}]
</option>
[{/section}]
</select>
</div>
<label class="req control-label [{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-3 text-md-left text-lg-right" for="oxYear_[{$sPaymentID}]" style="position: absolute; left: -9999em">[{oxmultilang ident="BIRTHDATE"}] [{oxmultilang ident="YEAR"}]</label>
<div class="[{*flow*}]col-xs-3 [{*wave*}]col-3 col-lg-3">
<input id="oxYear_[{$sPaymentID}]" class="oxYear form-control" name="d3bonimascore_[{$sPaymentID}]_oxbirthdate[year]" type="text" maxlength="4" value="[{if $birthday.year > 0}][{$birthday.year}][{/if}]" placeholder="[{oxmultilang ident="YEAR"}]"[{if $oView->isFieldRequired(oxuser__oxbirthdate)}] required=""[{/if}]>
</div>
</div>

View File

@ -0,0 +1,18 @@
[{assign var="user" value=$oView->getUser()}]
[{block name="d3_bonimascore_mandatory_firstname"}]
<div class="form-group">
<label class="req control-label [{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-3 text-md-left text-lg-right" for="oxFName_[{$sPaymentID}]">[{oxmultilang ident="FIRST_NAME"}]</label>
<div class="[{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-9">
<input
id="oxFName_[{$sPaymentID}]"
class="oxfname form-control"
name="d3bonimascore_[{$sPaymentID}]_oxfname"
type="text"
maxlength="255"
value="[{if $user->getFieldData('oxfname')}][{$user->getFieldData('oxfname')}][{/if}]"
[{if $oView->isFieldRequired(oxuser__oxfname)}] required=""[{/if}]
>
</div>
</div>
[{/block}]

View File

@ -0,0 +1,18 @@
[{assign var="user" value=$oView->getUser()}]
[{block name="d3_bonimascore_mandatory_lastname"}]
<div class="form-group">
<label class="req control-label [{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-3 text-md-left text-lg-right" for="oxLName_[{$sPaymentID}]">[{oxmultilang ident="LAST_NAME"}]</label>
<div class="[{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-9">
<input
id="oxLName_[{$sPaymentID}]"
class="oxlname form-control"
name="d3bonimascore_[{$sPaymentID}]_oxlname"
type="text"
maxlength="255"
value="[{if $user->getFieldData('oxlname')}][{$user->getFieldData('oxlname')}][{/if}]"
[{if $oView->isFieldRequired(oxuser__oxlname)}] required=""[{/if}]
>
</div>
</div>
[{/block}]

View File

@ -0,0 +1,22 @@
[{assign var="user" value=$oView->getUser()}]
[{assign var="salutation" value=$user->getFieldData('oxsal')}]
[{block name="d3_bonimascore_mandatory_salutation"}]
<div class="form-group">
<label class="req control-label [{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-3 text-md-left text-lg-right" for="oxSalutation_[{$sPaymentID}]">[{oxmultilang ident="TITLE"}]</label>
<div class="[{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-9">
<select
id="oxSalutation_[{$sPaymentID}]"
class="oxMonth form-control selectpicker"
name="d3bonimascore_[{$sPaymentID}]_oxsal"
[{if $oView->isFieldRequired(oxuser__oxsal)}] required=""[{/if}]
>
[{block name="d3_bonimascore_mandatory_salutation_items"}]
<option value="" [{if empty($salutation)}]SELECTED[{/if}]>[{oxmultilang ident="D3_BONIMASCORE_SELECT_SALUTATION"}]</option>
<option value="MRS" [{if $salutation|lower == "mrs"}]SELECTED[{/if}]>[{oxmultilang ident="MRS"}]</option>
<option value="MR" [{if $salutation|lower == "mr"}]SELECTED[{/if}]>[{oxmultilang ident="MR" }]</option>
[{/block}]
</select>
</div>
</div>
[{/block}]

View File

@ -0,0 +1,30 @@
[{assign var="user" value=$oView->getUser()}]
[{block name="d3_bonimascore_mandatory_street"}]
<div class="form-group">
<label class="req control-label [{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-3 text-md-left text-lg-right" for="oxStreet_[{$sPaymentID}]">[{oxmultilang ident="STREET_AND_STREETNO"}]</label>
<div class="[{*flow*}]col-xs-8 [{*wave*}]col-8 col-lg-6">
<input
id="oxStreet_[{$sPaymentID}]"
class="oxstreet form-control"
name="d3bonimascore_[{$sPaymentID}]_oxstreet"
type="text"
maxlength="255"
value="[{if $user->getFieldData('oxstreet')}][{$user->getFieldData('oxstreet')}][{/if}]"
[{if $oView->isFieldRequired(oxuser__oxstreet)}] required=""[{/if}]
>
</div>
<label class="req control-label[{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-3 text-md-left text-lg-right" for="oxStreetNr_[{$sPaymentID}]" style="position: absolute; left: -9999em">[{oxmultilang ident="STREET_AND_STREETNO"}]</label>
<div class="[{*flow*}]col-xs-4 [{*wave*}]col-4 col-lg-3">
<input
id="oxStreetNr_[{$sPaymentID}]"
class="oxstreetnr form-control"
name="d3bonimascore_[{$sPaymentID}]_oxstreetnr"
type="text"
maxlength="16"
value="[{if $user->getFieldData('oxstreetnr')}][{$user->getFieldData('oxstreetnr')}][{/if}]"
[{if $oView->isFieldRequired(oxuser__oxstreetnr)}] required=""[{/if}]
>
</div>
</div>
[{/block}]

View File

@ -0,0 +1,30 @@
[{assign var="user" value=$oView->getUser()}]
[{block name="d3_bonimascore_mandatory_zip"}]
<div class="form-group">
<label class="req control-label [{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-3 text-md-left text-lg-right" for="oxZip_[{$sPaymentID}]">[{oxmultilang ident="POSTAL_CODE_AND_CITY"}]</label>
<div class="[{*flow*}]col-xs-5 [{*wave*}]col-5 col-lg-3">
<input
id="oxZip_[{$sPaymentID}]"
class="oxzip form-control"
name="d3bonimascore_[{$sPaymentID}]_oxzip"
type="text"
maxlength="50"
value="[{if $user->getFieldData('oxzip')}][{$user->getFieldData('oxzip')}][{/if}]"
[{if $oView->isFieldRequired(oxuser__oxzip)}] required=""[{/if}]
>
</div>
<label class="req control-label [{*flow*}]col-xs-12 [{*wave*}]col-12 col-lg-3 text-md-left text-lg-right" for="oxCity_[{$sPaymentID}]" style="position: absolute; left: -9999em">[{oxmultilang ident="POSTAL_CODE_AND_CITY"}]</label>
<div class="[{*flow*}]col-xs-7 [{*wave*}]col-7 col-lg-6">
<input
id="oxCity_[{$sPaymentID}]"
class="oxcity form-control"
name="d3bonimascore_[{$sPaymentID}]_oxcity"
type="text"
maxlength="255"
value="[{if $user->getFieldData('oxcity')}][{$user->getFieldData('oxcity')}][{/if}]"
[{if $oView->isFieldRequired(oxuser__oxcity)}] required=""[{/if}]
>
</div>
</div>
[{/block}]

View File

@ -1,12 +1,15 @@
<?php //006ea
// This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.0.2.0 PHP71 (09.04.2020) @author Daniel Seifert support@shopmodule.com @copyright (C) 2020, D3 Data Development @see http://www.shopmodule.com
<?php //006f6
// <?php /** This Software is the property of DÂł Data Development and is protected by copyright law - it is NOT Freeware. Any unauthorized use of this software without a valid license key is a violation of the license agreement and will be prosecuted by civil and criminal law. Inhaber: Thomas Dartsch Alle Rechte vorbehalten @package Boniversum @version 3.2.0.0 PHP56 (15.06.2022) @author Daniel Seifert support@shopmodule.com @copyright (C) 2022, D3 Data Development @see https://www.d3data.de */ ?>
if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo("Site error: the ".(php_sapi_name()=='cli'?'ionCube':'<a href="http://www.ioncube.com">ionCube</a>')." PHP Loader needs to be installed. This is a widely used PHP extension for running ionCube protected PHP code, website security and malware blocking.\n\nPlease visit ".(php_sapi_name()=='cli'?'get-loader.ioncube.com':'<a href="http://get-loader.ioncube.com">get-loader.ioncube.com</a>')." for install assistance.\n\n");exit(199);
?>
HR+cPvfxntJBmpjxaizILrKaxeNTbV7qwZ2OfQ6uPodoVn0PutDx7kVKrlIHTbfHkxak5U8UmLVt
OGDwWoj3hCq7Je+cQJ0NpQ4+R8nakVFAhFFqCLmtPK6F/Ij/ovAx2zCmX8ksg8g6xP1QeD0CErj9
AsmX0jDgmgBuMq6iE05uTog74h4Wz1ZmHCW9Dm3zBN8zBHDBMgwleXRnbt+QlZPhTZWHjMicjzjK
n+vZe26sU6RRtFY8HUmUlSnNrFLSjyQ/AWf1aF0M/stVVckw47qjPnr5ovXfzsBSruzAffiqx0wH
GA49sjgq+r3LLDmPy6XLh4FykGM1hwCqQgwzb50SExyWCaDwbQ/TiSBag1LcvqjdYW4rigixBbhm
tGA7QmJvr3bGncF9oYH6oIM9Bx/+iYO/Hs44dCrUAZzgCaxDtwTJdTXwVLPxjP2N+6L6bJqtD4N3
PV4F2Y6tBN/YhZjobql/NOlls5fQPKs55B/3E7BmR+op2WT3lMKf4ZcIWRcHtv9J7qXSwvCYM/Mi
oWL8jLqbrH9DvuYFbTnbvIJOMN/yTi2tsS2vWyshBms3c/g8ox0rv8Cona+cEHG1TlhrlNnkLZO=
HR+cPmRHAXBQFgybesI/CHjVZK0Co3EihWFhnj6kaM/1AMZ91d9Z50sB33IA5lV+axY7Kk9wqJgL
XIwS/O7uPPlNQJ04sUAKl2QbRK5K+JNglGV855Yi1mtAbvqN6KXinVWYV27j2JQp57Dpk/2beC7e
oD9zyKte/Wap9K2ZGB1JSFbEGkF5hkliCIzyCoUqgJflBtozBVsE/4xQ8/7A7TYT/pXdYv0/sH5c
Fc0p5aeLyBDDre5sVexq6X0q5Le+8ZSNbA8UmVgVw1BLdGcZD/huHhsEPnlAPcXW/2d7zX27WMm3
Rj2486BIzodrUbwSjVpLfITv917xhYcCuGY4EHEgxKh8wj307ofgxw7jYL2xPJyOPfk0rGU6Jtyc
gzslWnJBsYJhZNFjRcaV5r5eLyc7H6oJvvrCuV/2C89FqreRMJl8ZoBiHfNWqu1iRHZlbd5zvsQj
3dZjsCZ8Lx8Egxo3ciodqagD6K4NkWtD8QYnT8Beq6y+8Nb+Mrmg3vOpsE21w0bhluxUK2gEViiA
Lf0Zc+6YRG8v6W7QoAbr0dW+QcQNopd+jTbfiShaUxW92aJmnyEUGxrCaduCSdEdwB19YHIUJhMI
RLUm8EB/asqqfpc0julY+ClE8BQZsY0ljDpiyrIUGSJBNF5UKC44AD0CQ5DSLrHn56hXnVzTv5Mv
VEZc+u1QK2C56w5DAv7JUjTaqB0MSIm1+elR0CVHFJJIjQAmy+saLqdn+TuIFhF5l8WMgB+YoFOL
eIDYyrJm/HvJkx6fRNHobVF1+uFSibkJNApem4Q4NkL0kXx4GVa=

View File

@ -25,15 +25,15 @@ use D3\ModCfg\Application\Model\Configuration\d3_cfg_mod;
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
use D3\ModCfg\Application\Model\Log\d3log;
use DateTime;
use Doctrine\DBAL\DBALException;
use Exception;
use OxidEsales\Eshop\Application\Model\Payment;
use OxidEsales\Eshop\Application\Model\PaymentList;
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Exception\InputException;
use OxidEsales\Eshop\Core\Exception\StandardException;
use OxidEsales\Eshop\Core\Registry;
use OxidEsales\Eshop\Core\UtilsView;
class d3_payment_bonimascore extends d3_payment_bonimascore_parent
{
@ -127,37 +127,64 @@ class d3_payment_bonimascore extends d3_payment_bonimascore_parent
/** @var d3_oxuser_bonimascore $oUser */
$oUser = $this->getUser();
if (false == $this->d3PaymentIsSafe($oBonima->d3GetRequestedPaymentId()) && false == $oUser->isLoaded())
{
if (false == $this->d3PaymentIsSafe($oBonima->d3GetRequestedPaymentId()) && false == $oUser->isLoaded()) {
$this->_d3GetSettings()->d3getLog()->log(d3log::DEBUG, __CLASS__, __FUNCTION__, __LINE__, 'no user loaded');
$mReturn = $this->d3GetNoValidBirthdateReturn();
}
elseif (false == $this->d3PaymentIsSafe($oBonima->d3GetRequestedPaymentId()) && false == $oUser->d3HasValidBirthdateValue()) {
$this->_d3GetSettings()->d3getLog()->log(d3log::DEBUG, __CLASS__, __FUNCTION__, __LINE__, 'user entered no (valid) birthdate');
$mReturn = $this->d3GetNoValidBirthdateReturn();
$mReturn = $this->d3GetNoMandatoryFieldValueReturn();
} elseif (false === $this->d3PaymentIsSafe($oBonima->d3GetRequestedPaymentId()) && false === $oUser->d3HasMandatoryFieldValues()) {
$mReturn = $this->d3GetNoMandatoryFieldValueReturn();
} elseif (false === $oBonima->hasValidPaymentSelected()) {
$mReturn = $this->d3GetNoValidPaymentReturn();
};
}
return $mReturn;
}
public function d3GetNoValidBirthdayController()
public function d3GetNoValidMandatoryValueController()
{
return "user";
}
/**
* @return string[]
*/
public function d3GetNotRequestedMandatoryFields()
{
/** @var d3_oxuser_bonimascore $user */
$user = $this->getUser();
return $user->d3GetNotRequestedMandatoryFields();
}
/**
* combine oxstreet + oxstreetnr
* @return string[]
*/
public function d3GetNotRequestedCombinedMandatoryFields()
{
$replaces = [
'oxuser__oxstreetnr' => 'oxuser__oxstreet',
'oxuser__oxcity' => 'oxuser__oxzip',
];
$fields = $this->d3GetNotRequestedMandatoryFields();
foreach ($replaces as $search => $replace) {
if ( false !== $fieldIdent = array_search( $search, $fields ) ) {
$fields[ $fieldIdent ] = $replace;
}
}
return array_unique($fields, SORT_STRING);
}
/**
* @return string
*/
public function d3GetNoValidBirthdateReturn()
public function d3GetNoMandatoryFieldValueReturn()
{
$sReturnController = $this->d3GetNoValidBirthdayController();
$sReturnController = $this->d3GetNoValidMandatoryValueController();
/** @var InputException $oException */
$oException = oxNew(InputException::class, 'D3_BONIMASCORE_BIRTHDAY_INVALID');
Registry::get(UtilsView::class)->addErrorToDisplay($oException, false, false, '', $sReturnController);
Registry::getSession()->setVariable('d3BonimaScoreRequBirthDate', true);
/** @var d3_oxuser_bonimascore $user */
$user = $this->getUser();
Registry::getSession()->setVariable('d3BonimaScoreRequiredFields', $user->d3GetNotRequestedMandatoryFields());
return $sReturnController;
}
@ -196,7 +223,7 @@ class d3_payment_bonimascore extends d3_payment_bonimascore_parent
Registry::getSession()->deleteVariable('d3BonimaScorePaymentFailed');
Registry::getSession()->deleteVariable('d3BonimaScoreDelAddrFailed');
Registry::getSession()->deleteVariable('d3BonimaScoreRequBirthDate');
Registry::getSession()->deleteVariable('d3BonimaScoreRequiredFields');
/** @var d3bonima $oBonima */
$oBonima = oxNew(d3bonima::class);
@ -374,4 +401,30 @@ class d3_payment_bonimascore extends d3_payment_bonimascore_parent
return (bool) $oPayment->getFieldData('d3bonimascoresafe');
}
/**
* @return array
* @throws Exception
*/
public function d3GetUserBirthdate()
{
$birthdate = (string) Registry::getSession()->getUser()->getFieldData('oxbirthdate');
// because of DateTime bug with zero date
if ($birthdate === '0000-00-00') {
return [
'year' => '0000',
'month' => '00',
'day' => '00'
];
}
$date = new DateTime($birthdate);
return [
'year' => $date->format('Y'),
'month' => $date->format('m'),
'day' => $date->format('d')
];
}
}

Some files were not shown because too many files have changed in this diff Show More