Dokumentation
Einfache Dokumentation zu meiner Software
Vorwort
Hier findest du eine Example der Config.php. Lese dich durch und schaue welche Optionen Du setzten magst.Config.php Exmaple
<?php
if (preg_match("/config.php/i", $_SERVER['PHP_SELF'])) {
Header("Location: index.php");
}
// Adminsystem Secure (https://addons.opera.com/de/extensions/details/user-agent-switcher-5/)
$requiredUserAgent = "";
// Mollie Payment
$mollie_key = "";
$dbhost = "";
$dbuname = "";
$dbpass = "";
$dbname = "";
$prefix = "";
$dbtype = "";
$sitekey = "";
$gfx_chk = 1;
$debug_mode = 1;
$adminsecurity = 1;
$requiredUserAgent = "";
$max_logins = "3";
/*
// CMS/SHOP
$maintenancepath = "maintenance";
$joinuspath = "register";
$startsitepath = "home";
$feedbackpath = "contact";
$protectedpath = "protected";
$shopdetails = "products_";
$shopaddpath = "order";
$shopcheckoutpath = "orderprocess";
$storedetails = "products_";
$storeaddpath = "order";
$storebasketpath = "basket";
$storecheckoutpath = "orderprocess";
*/
$backupserver = ""; // IP oder Domain
$backupport = 21; // FTP-Port 21 oder anderen
$backuppath = "";
$backuplogin = ""; // Username
$backuppasswd = ""; // Passwort
$certificateurl = "localhost";
$certificatepath = "wi/modules.php?name=protected";
//1 = An, 0 = Aus | Reinfolge: Blog, FAQ, Feedback, Forum, Joinus, News, Profil, Sections, Shop ,Store, Kunden Login
$maintenancecodes = "00000000000";
$wicodes = "00000";
$shopcodes = "0000000";
$ipv6 = 1;
$global_localtax = "19";
$global_userspace = "50G";
$global_gsdbcheck = 1; // ! = AN, 0 = Aus | Gameserver Onliestatus Global nur aus der Datenbank lesen
$recaptcha_siteKey = "YOUR_RECAPTCHA_SITEKEY";
$recaptcha_secret = "YOUR_RECAPTCHA_SECRET";
$ratemodule = "teklab";
$ratepasswd = "";
?>