APPPATH/libraries/Session/drivers/Session_redis_driver.php [ 134 ]
129 {
130 return FALSE;
131 }
132
133 $redis = new Redis();
134 if ( ! $redis->connect($this->_config['save_path']['host'], $this->_config['save_path']['port'], $this->_config['save_path']['timeout']))
135 {
136 log_message('error', 'Session: Unable to connect to Redis with the configured settings.');
137 }
138 elseif (isset($this->_config['save_path']['password']) && ! $redis->auth($this->_config['save_path']['password']))
139 {
-
APPPATH/libraries/Session/drivers/Session_redis_driver.php [ 134 ] » Redis->connect( arguments )
host
/var/lib/redis/redis.sock
port
timeout
129 { 130 return FALSE; 131 } 132 133 $redis = new Redis(); 134 if ( ! $redis->connect($this->_config['save_path']['host'], $this->_config['save_path']['port'], $this->_config['save_path']['timeout'])) 135 { 136 log_message('error', 'Session: Unable to connect to Redis with the configured settings.'); 137 } 138 elseif (isset($this->_config['save_path']['password']) && ! $redis->auth($this->_config['save_path']['password'])) 139 {
-
{PHP internal call} » CI_Session_redis_driver->open( arguments )
save_path
/var/cpanel/php/sessions/ea-php72
name
elnino_session
-
/home/kijkeninelkaarsk/system/libraries/Session/Session.php [ 149 ] » session_start( )
144 ) 145 { 146 unset($_COOKIE[$this->_config['cookie_name']]); 147 } 148 149 session_start(); 150 151 // Is session ID auto-regeneration configured? (ignoring ajax requests) 152 if ( 153 (isset($_SERVER["REQUEST_METHOD"]) && $_SERVER["REQUEST_METHOD"] != "OPTIONS") && 154 (empty($_SERVER['HTTP_X_REQUESTED_WITH']) OR strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) !== 'xmlhttprequest')
-
/home/kijkeninelkaarsk/system/core/Loader.php [ 1247 ] » CI_Session->__construct( )
1242 $this->_ci_classes[$object_name] = $class; 1243 1244 // Instantiate the class 1245 $CI->$object_name = isset($config) 1246 ? new $class_name($config) 1247 : new $class_name(); 1248 } 1249 1250 // -------------------------------------------------------------------- 1251 1252 /**
-
/home/kijkeninelkaarsk/system/core/Loader.php [ 1140 ] » CI_Loader->_ci_init_library( arguments )
class
Session
prefix
CI_
config
object_name
session
1135 log_message('debug', $path.' exists, but does not declare '.$subclass); 1136 } 1137 } 1138 } 1139 1140 return $this->_ci_init_library($library_name, $prefix, $params, $object_name); 1141 } 1142 1143 // -------------------------------------------------------------------- 1144 1145 /**
-
/home/kijkeninelkaarsk/system/core/Loader.php [ 1003 ] » CI_Loader->_ci_load_stock_library( arguments )
library_name
Session
file_path
Session/
params
object_name
998 $class = ucfirst($class); 999 1000 // Is this a stock library? There are a few special conditions if so ... 1001 if (file_exists(BASEPATH.'libraries/'.$subdir.$class.'.php')) 1002 { 1003 return $this->_ci_load_stock_library($class, $subdir, $params, $object_name); 1004 } 1005 1006 // Let's search for the requested library file and load it. 1007 foreach ($this->_ci_library_paths as $path) 1008 {
-
APPPATH/third_party/MX/Loader.php [ 173 ] » CI_Loader->_ci_load_library( arguments )
class
Session
params
object_name
168 ($path2) && $params = Modules::load_file($file, $path2, 'config'); 169 } 170 171 if ($path === FALSE) 172 { 173 $this->_ci_load_library($library, $params, $object_name); 174 $_alias = $this->_ci_classes[$class]; 175 } 176 else 177 { 178 Modules::load_file($_library, $path);
-
/home/kijkeninelkaarsk/system/core/Loader.php [ 716 ] » MX_Loader->library( arguments )
library
Session/session
params
object_name
711 if ( ! strpos($library, '/')) 712 { 713 $library = ucfirst($library).'/'.$library; 714 } 715 716 return $this->library($library, $params, $object_name); 717 } 718 719 // -------------------------------------------------------------------- 720 721 /**
-
APPPATH/libraries/Auth.php [ 40 ] » CI_Loader->driver( arguments )
library
Session/session
35 private $elementID = false; 36 37 function __construct() 38 { 39 $this->CI = & get_instance(); 40 $this->CI->load->driver('session'); 41 $this->CI->load->driver('cache', array('adapter' => 'redis', 'backup' => 'file', 'key_prefix' => $this->CI->config->item("domain") . ":")); 42 $this->_initialize(); 43 } 44 45
-
/home/kijkeninelkaarsk/system/core/Loader.php [ 1246 ] » Auth->__construct( arguments )
0
Array ( [auth_free] => Array ( [front] => Array ( [0] => * ) [api] => Array ( [cms_forms] => Array ( [0] => index_post ) ) ) )
1241 // Save the class name and object name 1242 $this->_ci_classes[$object_name] = $class; 1243 1244 // Instantiate the class 1245 $CI->$object_name = isset($config) 1246 ? new $class_name($config) 1247 : new $class_name(); 1248 } 1249 1250 // -------------------------------------------------------------------- 1251
-
/home/kijkeninelkaarsk/system/core/Loader.php [ 1042 ] » CI_Loader->_ci_init_library( arguments )
class
Auth
prefix
config
Array ( [auth_free] => Array ( [front] => Array ( [0] => * ) [api] => Array ( [cms_forms] => Array ( [0] => index_post ) ) ) )
object_name
auth
1037 { 1038 continue; 1039 } 1040 1041 include_once($filepath); 1042 return $this->_ci_init_library($class, '', $params, $object_name); 1043 } 1044 1045 // One last attempt. Maybe the library is in a subdirectory, but it wasn't specified? 1046 if ($subdir === '') 1047 {
-
APPPATH/third_party/MX/Loader.php [ 173 ] » CI_Loader->_ci_load_library( arguments )
class
Auth
params
Array ( [auth_free] => Array ( [front] => Array ( [0] => * ) [api] => Array ( [cms_forms] => Array ( [0] => index_post ) ) ) )
object_name
168 ($path2) && $params = Modules::load_file($file, $path2, 'config'); 169 } 170 171 if ($path === FALSE) 172 { 173 $this->_ci_load_library($library, $params, $object_name); 174 $_alias = $this->_ci_classes[$class]; 175 } 176 else 177 { 178 Modules::load_file($_library, $path);
-
APPPATH/core/MY_Loader.php [ 243 ] » MX_Loader->library( arguments )
library
auth
238 } 239 240 // Load all other libraries 241 foreach ($autoload['libraries'] as $item) 242 { 243 $this->library($item); 244 } 245 } 246 247 // Autoload models 248 if (isset($autoload['model']))
-
APPPATH/core/MY_Loader.php [ 141 ] » MY_Loader->ci_autoloader( arguments )
basepath
136 * @param null $basepath 137 * @return void 138 */ 139 function _ci_autoloader($basepath = NULL) 140 { 141 $this->ci_autoloader($basepath); 142 } 143 144 /** 145 * Specific Autoloader (99% ripped from the parent) 146 *
-
/home/kijkeninelkaarsk/system/core/Loader.php [ 157 ] » MY_Loader->_ci_autoloader( )
152 * @used-by CI_Controller::__construct() 153 * @return void 154 */ 155 public function initialize() 156 { 157 $this->_ci_autoloader(); 158 } 159 160 // -------------------------------------------------------------------- 161 162 /**
-
APPPATH/third_party/MX/Loader.php [ 65 ] » CI_Loader->initialize( )
60 } 61 } 62 } 63 else 64 { 65 parent::initialize(); 66 67 /* autoload module items */ 68 $this->_autoloader(array()); 69 } 70
-
APPPATH/third_party/AG/Loader.php [ 74 ] » MX_Loader->initialize( )
69 $this->$var =& CI::$APP->load->$var; 70 } 71 } 72 73 }else { 74 parent::initialize(); 75 76 /* autoload module items */ 77 $this->_autoloader(array()); 78 } 79
-
APPPATH/core/MY_Loader.php [ 52 ] » AG_Loader->initialize( arguments )
controller
47 * @return Loader 48 */ 49 function initialize($controller = null) 50 { 51 log_message('debug', 'MY Loader Class Initialized'); 52 parent::initialize($controller); 53 54 parent::config('auth', false, false); 55 56 if(!$this->_is_lt_210) 57 {
-
/home/kijkeninelkaarsk/system/core/Controller.php [ 79 ] » MY_Loader->initialize( )
74 { 75 $this->$var =& load_class($class); 76 } 77 78 $this->load =& load_class('Loader', 'core'); 79 $this->load->initialize(); 80 log_message('info', 'Controller Class Initialized'); 81 } 82 83 // -------------------------------------------------------------------- 84
-
APPPATH/third_party/MX/Base.php [ 55 ] » CI_Controller->__construct( )
50 51 /* re-assign language and config for modules */ 52 if ( ! $LANG instanceof MX_Lang) $LANG = new MX_Lang; 53 if ( ! $CFG instanceof MX_Config) $CFG = new MX_Config; 54 55 parent::__construct(); 56 } 57 } 58 59 /* create the application object */ 60 new CI;
-
APPPATH/third_party/MX/Base.php [ 60 ] » CI->__construct( )
55 parent::__construct(); 56 } 57 } 58 59 /* create the application object */ 60 new CI;
-
APPPATH/third_party/MX/Controller.php [ 4 ] » require( arguments )
0
/home/kijkeninelkaarsk/application/third_party/MX/Base.php
1 <?php (defined('BASEPATH')) OR exit('No direct script access allowed'); 2 3 /** load the CI class for Modular Extensions **/ 4 require dirname(__FILE__).'/Base.php'; 5 6 /** 7 * Modular Extensions - HMVC 8 * 9 * Adapted from the CodeIgniter Core Classes
-
APPPATH/third_party/MX/Modules.php [ 123 ] » include_once( arguments )
0
/home/kijkeninelkaarsk/application/third_party/MX/Controller.php
118 /* autoload Modular Extensions MX core classes */ 119 if (strstr($class, 'MX_')) 120 { 121 if (is_file($location = dirname(__FILE__).'/'.substr($class, 3).EXT)) 122 { 123 include_once $location; 124 return; 125 } 126 show_error('Failed to load MX core class: '.$class); 127 } 128
-
{PHP internal call} » Modules::autoload( arguments )
class
MX_Controller
-
APPPATH/modules/cms/controllers/front/Cms_page.php [ 3 ] » spl_autoload_call( arguments )
class_name
MX_Controller
1 <?php 2 3 class Cms_page extends MX_Controller 4 { 5 6 // routed to by 404-override in routes. Uses uri_string to determine what page to load. 7 public function view() 8 {
-
/home/kijkeninelkaarsk/system/core/CodeIgniter.php [ 444 ] » require_once( arguments )
0
/home/kijkeninelkaarsk/application/modules/cms/controllers/front/Cms_page.php
439 440 if ( ! class_exists($error_class, FALSE)) 441 { 442 if (file_exists(APPPATH.'controllers/'.$RTR->directory.$error_class.'.php')) 443 { 444 require_once(APPPATH.'controllers/'.$RTR->directory.$error_class.'.php'); 445 $e404 = ! class_exists($error_class, FALSE); 446 } 447 // Were we in a directory? If so, check for a global override 448 elseif ( ! empty($RTR->directory) && file_exists(APPPATH.'controllers/'.$error_class.'.php')) 449 {
-
FCPATH/index.php [ 325 ] » require_once( arguments )
0
/home/kijkeninelkaarsk/system/core/CodeIgniter.php
320 * LOAD THE BOOTSTRAP FILE 321 * -------------------------------------------------------------------- 322 * 323 * And away we go... 324 */ 325 require_once BASEPATH.'core/CodeIgniter.php'; 326 327 /* End of file index.php */ 328 /* Location: ./index.php */