Update file inclusion paths in multiple PHP files: Adjusted paths to use the new backend directory structure, ensuring consistent access to functions and configuration files across the application.

This commit is contained in:
𝓜𝓪𝓬𝓮™
2026-04-02 13:46:08 +02:00
parent b4ab365314
commit c8386a8f4b
34 changed files with 2879 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../backend/includes/functions.php';
// Page configuration
$page_title = '404 - Seite nicht gefunden | HexaHost.de';

View File

@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../backend/includes/functions.php';
// Page configuration
$page_title = '500 - Serverfehler | HexaHost.de';

View File

@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../backend/includes/functions.php';
// Page configuration
$page_title = 'Über uns - HexaHost.de | Hosting aus Niederbayern';

View File

@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../backend/includes/functions.php';
// Page configuration
$page_title = 'Allgemeine Geschäftsbedingungen - HexaHost.de | AGB';

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1
public/assets/js/main.js Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../backend/includes/functions.php';
// Page configuration
$page_title = 'Kontakt - HexaHost.de | Hosting aus Niederbayern';

View File

@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../backend/includes/functions.php';
// Page configuration
$page_title = 'Datenschutzerklärung - HexaHost.de | Datenschutz';

View File

@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../backend/includes/functions.php';
// Page configuration
$page_title = 'Impressum - HexaHost.de | Rechtliche Angaben';

View File

@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../backend/includes/functions.php';
// Page configuration
$page_title = 'HexaHost.de - Zuverlässiges Hosting aus Niederbayern';

View File

@@ -1,6 +1,6 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../../../config/products-config.php';
require_once __DIR__ . '/../backend/includes/functions.php';
require_once __DIR__ . '/../backend/config/products-config.php';
// Produkt-Daten aus Config laden
$product = getProduct('mail-gateway');

View File

@@ -1,6 +1,6 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../../../config/products-config.php';
require_once __DIR__ . '/../backend/includes/functions.php';
require_once __DIR__ . '/../backend/config/products-config.php';
// Produkt-Daten aus Config laden
$product = getProduct('vpc');

View File

@@ -1,6 +1,6 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../../../config/products-config.php';
require_once __DIR__ . '/../backend/includes/functions.php';
require_once __DIR__ . '/../backend/config/products-config.php';
// Produkt-Daten aus Config laden
$product = getProduct('vps');

View File

@@ -1,6 +1,6 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../../../config/products-config.php';
require_once __DIR__ . '/../backend/includes/functions.php';
require_once __DIR__ . '/../backend/config/products-config.php';
// Produkt-Daten aus Config laden
$product = getProduct('webhosting');

View File

@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/../../../includes/functions.php';
require_once __DIR__ . '/../backend/includes/functions.php';
// Page configuration
$page_title = 'Widerrufsbelehrung - HexaHost.de';