mysql_connect(): No such file or directory in sys/class/mysql.php on line 55
sys/class/mysql.php
mysql_connect('localhost', 'd01f2a64', 'sEvvkaQ5Xx9HYMCN')
50     /**
51      * Datenbank verbinden
52      * @version 1.0.0
53      */
54     public function connect() {
55         if(!mysql_connect($this->host, $this->user, $this->password))
56             throw new Exception('Cannot connect to mysql server');
57         if(!mysql_select_db($this->name))
58             throw new Exception("Cannot select database");
59         $this->query("SET CHARACTER SET ".$this->charset);        
60     }
sys/class/mysql.php
connect()
29         $this->password = $password;
30 
31         $this->charset = $charset;
32         $this->prefix = $prefix;
33 
34         $this->connect();
35 
36         self::$_inst = $this;
37     }
38 
39     /**
sys/mysql.php
__construct('localhost', 'd01f2a64', 'd01f2a64', 'sEvvkaQ5Xx9HYMCN', 'utf8', 'sys_')
16         $dbname,
17         $dbname,
18         sys_var('database/password'),
19         sys_var('database/charset'),
20         sys_var('database/prefix')
21     );
22 }
sys/files.php
include_once('/www/htdocs/w00e8f99/dolcevitahotels.com_old/sys/mysql.php')
51 }
52 // Includes in einem 2. Schritt laden, damit Variablen innerhalb der Schleife nicht überschrieben werden
53 foreach($includes_load as $file => $load) {
54     // Kontrolle ob Datei überhaupt geladen werden soll
55     if($load === null || $session_load == $load)
56         include_once($file);
57 }
58 // Cache erstellen
59 if(!is_array(sys_var('files/include/load')))
60     $_SESSION['sys']['files']['include']['load'] = $includes_load;
61 
router.php
include('/www/htdocs/w00e8f99/dolcevitahotels.com_old/sys/files.php')
13 
14     preg_match('/^\/(?<lang>[a-z]{2})(\/(?<site>.*)?|$)/', SYS_URL, $sys_url);
15 
16     if($sys_url['lang'] != $_SESSION['sys']['language']['value']) $sys_lang_set = $sys_url['lang'];
17 
18     include('sys/files.php');
19 
20     header('Content-Language: '.SYS_LANG);
21     $result = Mysql::inst()->getFirst("
22         SELECT
23             wc.*,
index.php
include('/www/htdocs/w00e8f99/dolcevitahotels.com_old/router.php')
18 ob_start();
19 
20 session_name(str_replace(array('www.', '.'), '', $_SERVER['HTTP_HOST']));
21 @session_start();
22 
23 include('router.php');
24 
25 $debug->end($_GET['sys']);

Root Pfad: /www/htdocs/w00e8f99/dolcevitahotels.com_old/
Request URL: /it/prezzi-e-offerte/listino-prezzi
Referer URL:
Post Variablen: Array ( )