SYSDIR/database/drivers/mysqli/mysqli_driver.php [ 73 ]
68 {
69 return @mysqli_connect($this->hostname, $this->username, $this->password, $this->database, $this->port);
70 }
71 else
72 {
73 return @mysqli_connect($this->hostname, $this->username, $this->password, $this->database);
74 }
75
76 }
77
78 // --------------------------------------------------------------------
-
SYSDIR/database/drivers/mysqli/mysqli_driver.php [ 73 ] » mysqli_connect(arguments)
hostname
mysql-kwhtf6.pg-ph-qi06ft.db.project.host
username
dbu_kwhtf6
password
XjXH.-adKUN2
database
mysql_kwhtf6
68 { 69 return @mysqli_connect($this->hostname, $this->username, $this->password, $this->database, $this->port); 70 } 71 else 72 { 73 return @mysqli_connect($this->hostname, $this->username, $this->password, $this->database); 74 } 75 76 } 77 78 // --------------------------------------------------------------------
-
SYSDIR/database/drivers/mysqli/mysqli_driver.php [ 88 ] » CI_DB_mysqli_driver->db_connect()
83 * @access private called by the base class 84 * @return resource 85 */ 86 function db_pconnect() 87 { 88 return $this->db_connect(); 89 } 90 91 // -------------------------------------------------------------------- 92 93 /**
-
SYSDIR/database/DB_driver.php [ 115 ] » CI_DB_mysqli_driver->db_pconnect()
110 } 111 112 // ---------------------------------------------------------------- 113 114 // Connect to the database and set the connection ID 115 $this->conn_id = ($this->pconnect == FALSE) ? $this->db_connect() : $this->db_pconnect(); 116 117 // No connection resource? Throw an error 118 if ( ! $this->conn_id) 119 { 120 log_message('error', 'Unable to connect to the database');
-
SYSDIR/database/DB.php [ 138 ] » CI_DB_driver->initialize()
133 $new_driver = new $driver($params); 134 $DB =& instantiate_class($new_driver); 135 136 if ($DB->autoinit == TRUE) 137 { 138 $DB->initialize(); 139 } 140 141 return $DB; 142 } 143
-
SYSDIR/libraries/Loader.php [ 225 ] » DB(arguments)
params
Array ( [hostname] => mysql-kwhtf6.pg-ph-qi06ft.db.project.host [username] => dbu_kwhtf6 [password] => XjXH.-adKUN2 [database] => mysql_kwhtf6 [dbdriver] => mysqli [dbprefix] => [pconnect] => 1 [db_debug] => 1 [cache_on] => [cachedir] => [char_set] => utf8 [dbcollat] => utf8_general_ci )
active_record_override
220 // Initialize the db variable. Needed to prevent 221 // reference errors with some configurations 222 $CI->db = ''; 223 224 // Load the DB class 225 $CI->db =& DB($params, $active_record); 226 227 // Assign the DB object to any existing models 228 $this->_ci_assign_to_models(); 229 } 230
-
SYSDIR/libraries/Loader.php [ 986 ] » CI_Loader->database()
981 if (isset($autoload['libraries']) AND count($autoload['libraries']) > 0) 982 { 983 // Load the database driver. 984 if (in_array('database', $autoload['libraries'])) 985 { 986 $this->database(); 987 $autoload['libraries'] = array_diff($autoload['libraries'], array('database')); 988 } 989 990 // Load scaffolding 991 if (in_array('scaffolding', $autoload['libraries']))
-
SYSDIR/libraries/Controller.php [ 85 ] » CI_Loader->_ci_autoloader()
80 // if (floor(phpversion()) >= 5) 81 82 if (version_compare(PHP_VERSION, '5', '>=')) 83 { 84 $this->load =& load_class('Loader'); 85 $this->load->_ci_autoloader(); 86 } 87 else 88 { 89 $this->_ci_autoloader(); 90
-
SYSDIR/libraries/Controller.php [ 43 ] » Controller->_ci_initialize()
38 * Calls the initialize() function 39 */ 40 function __construct() 41 { 42 parent::__construct(); 43 $this->_ci_initialize(); 44 log_message('debug', "Controller Class Initialized"); 45 } 46 47 // -------------------------------------------------------------------- 48
-
FCPATH/application/libraries/MY_Controller.php [ 21 ] » Controller->__construct()
16 17 //--------------------------------------------------------------- 18 19 function __construct() 20 { 21 parent::__construct(); 22 } 23 24 //--------------------------------------------------------------- 25 26 /**
-
FCPATH/application/libraries/Frontend_Controller.php [ 16 ] » MY_Controller->__construct()
11 /** 12 * __construct function. 13 */ 14 function __construct() 15 { 16 parent::__construct(); 17 } 18 19 //--------------------------------------------------------------- 20 21 /**
-
FCPATH/application/controllers/app/products.php [ 13 ] » Frontend_Controller->__construct()
8 private $category_url; 9 private $filters; 10 11 function __construct() 12 { 13 parent::__construct(); 14 15 //$this->output->enable_profiler(TRUE); 16 17 $this->load->library('sellpricetabler'); 18
-
SYSDIR/codeigniter/CodeIgniter.php [ 201 ] » Products->__construct()
196 */ 197 198 // Mark a start point so we can benchmark the controller 199 $BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_start'); 200 201 $CI = new $class(); 202 203 // Is this a scaffolding request? 204 if ($RTR->scaffolding_request === TRUE) 205 { 206 if ($EXT->_call_hook('scaffolding_override') === FALSE)
-
FCPATH/index.php [ 147 ] » require_once(arguments)
0
/home/p-e3ke6h/html/merkur-werbemittel-npq7a/www.merkur-werbemittel.de/system/codeigniter/CodeIgniter.php
142 |--------------------------------------------------------------- 143 | 144 | And away we go... 145 | 146 */ 147 require_once BASEPATH.'codeigniter/CodeIgniter'.EXT; 148 149 /* End of file index.php */ 150 /* Location: ./index.php */