Spielen Sie die Datei "protectedshops.sql" per phpMyAdmin in Ihre Datenbank ein.
Kopieren Sie die php Dateien in die angegebenen Verzeichnisse.
Danach ffnen Sie alle Textfiles und fhren Sie die dort beschriebenen nderungen durch.

Falls es gewnscht ist den Widerrufstext und die AGB zu senden kann der Quelltext in der send_order.php:
  $shop_content_query = xtc_db_query("SELECT content_title,
                                             content_heading,
                                             content_text,
                                             content_file
                                        FROM " . TABLE_CONTENT_MANAGER . "
                                       WHERE content_group='9' " . $group_check . "
                                         AND languages_id='" . $_SESSION['languages_id'] . "'");
so abgendert werden:
  $shop_content_query = xtc_db_query("SELECT content_title,
                                             content_heading,
                                             content_text,
                                             content_file
                                        FROM " . TABLE_CONTENT_MANAGER . "
                                       WHERE content_group IN ('3','9') " . $group_check . "
                                         AND languages_id='" . $_SESSION['languages_id'] . "'");



Use phpMyAdmin to import the file "protectedshops.sql" into your database.
Copy all php files to the folders.
Please read the information in the txt files to modify your original shop files.

If you want to send "right of revocation" and "conditions of use" please change the code in send_order.php:
  $shop_content_query = xtc_db_query("SELECT content_title,
                                             content_heading,
                                             content_text,
                                             content_file
                                        FROM " . TABLE_CONTENT_MANAGER . "
                                       WHERE content_group='9' " . $group_check . "
                                         AND languages_id='" . $_SESSION['languages_id'] . "'");
to this:
  $shop_content_query = xtc_db_query("SELECT content_title,
                                             content_heading,
                                             content_text,
                                             content_file
                                        FROM " . TABLE_CONTENT_MANAGER . "
                                       WHERE content_group IN ('3','9') " . $group_check . "
                                         AND languages_id='" . $_SESSION['languages_id'] . "'");
