Hallo Community, ich habe heute probiert erneut auf meine WebAuction+-Konfiguration zuzugreifen, jedoch sagt mir mein Browser, der Server könne die Anfrage zurzeit nicht bearbeiten (Error 500)
Nachdem ich ein wenig in den Error Logs herumgeforscht habe, ist mir dieser Fehler aufgefallen
Code
[Tue Jun 28 12:53:24.312170 2016] [:error] [pid 11085] [client 217.85.152.37:61871] PHP Fatal error: Uncaught Error: Call to undefined function mysql_pconnect() in /var/www/html/edk-app/WebInterface/config.php:16\nStack trace:\n#0 /var/www/html/edk-app/WebInterface/index.php(103): ConnectDB()\n#1 {main}\n thrown in /var/www/html/edk-app/WebInterface/config.php on line 16
Dieser Fehler tritt bei jedem Aufruf von /edk-app/Webinterface auf.
Die config.php von WebAuction+ sieht wie folgt aus
PHP
<?php if(!defined('DEFINE_INDEX_FILE')){if(headers_sent()){echo '<header><meta http-equiv="refresh" content="0;url=../"></header>';}else{header('HTTP/1.0 301 Moved Permanently'); header('Location: ../');} die("<font size=+2>Access Denied!!</font>");}
// Database config
function ConnectDB(){global $db,$config;
$host = 'localhost';
$port = 3306;
$username = 'ZENSIERT';
$password = 'ZENSIERT';
$database = 'webauction+';
$config['table prefix'] = 'WA_';
$db=@mysql_pconnect($host.($port==0?'':':'.((int)$port)),$username,$password);
if(!$db || !@mysql_select_db($database,$db)){echo '<p>MySQL Error: '.mysql_error().'</p>'; exit();}
mysql_query("SET names UTF8");
}
// iConomy config
$config['iConomy']['use'] = 'false'; // ( true / false ) Do you want to use the iConomy table to get the money from (iConomy tables and WebAuction tables need to be in the same Database)
$config['iConomy']['table'] = 'iConomy'; // 'iConomy' is the default table name when using MySQL with iConomy
// CraftConomy config
$config['CC']['use'] = 'false'; // ( true / false ) Do you want to use the CraftConomy table to get the money from (CraftConomy tables and WebAuction tables need to be in the same Database)
$config['CC']['prefix'] = 'cc3'; // the thable prefix ot the CrafConomy tables
$config['CC']['group'] = 'default'; // the name of the money group we should use
$config['CC']['currency'] = 'Dollar'; // the name of the currency we should use
?>
Alles anzeigen
Alles anzeigenFalls die php.ini ebenfalls benötigt wird, kann ich diese per PN weitergeben
Ich hoffe, jemand von euch kann mir weiterhelfen.