[Warning] session_start(): open(/var/lib/php5/sess_596229027981fd26535bec0163931f58, O_RDWR) failed: Permission denied (13)

GET /products/tyres/vehicleSearch

Line 380 in /var/www/vhosts/anzwheels.co.nz/httpdocs/framework/control/Session.php

Source

371 
372 			// Allow storing the session in a non standard location
373 			if($session_path) session_save_path($session_path);
374 
375 			// If we want a secure cookie for HTTPS, use a seperate session name. This lets us have a
376 			// seperate (less secure) session for non-HTTPS requests
377 			if($secure) session_name('SECSESSID');
378 
379 			if($sid) session_id($sid);
380 			session_start();
381 
382 			$this->data = isset($_SESSION) ? $_SESSION : array();
383 		}
384 
385 		// Modify the timeout behaviour so it's the *inactive* time before the session expires.
386 		// By default it's the total session lifetime

Trace

GET /products/tyres/vehicleSearch

[Notice] Undefined variable: the_model

GET /products/tyres/vehicleSearch

Line 121 in /var/www/vhosts/anzwheels.co.nz/httpdocs/tyres/code/TyresPage.php

Source

112 
113         $data = array();
114         $data['Tyres'] = Tyre::get()
115             ->leftJoin('TyreBrand', 'TyreBrand.ID = Tyre.BrandID')
116             ->leftJoin('TyreSize', 'TyreSize.TyreID = Tyre.ID')
117             ->where(implode(' AND ', $where))
118             ->sort('TyreBrand.Name ASC, Tyre.Name ASC');
119         $data['Title'] = 'Tyre search results';
120         $data['Type'] = 'Car';
121         $data['Model'] = $the_model;
122 
123 
124         return $data;
125     }
126 
127     public function tyre($r){

Trace

Tyre search results - ANZ Wheels

Tyre search results

GET /products/tyres/vehicleSearch

[Warning] Unknown: open(/var/lib/php5/sess_596229027981fd26535bec0163931f58, O_RDWR) failed: Permission denied (13)

GET /products/tyres/vehicleSearch

Line 0 in Unknown

Trace

GET /products/tyres/vehicleSearch

[Warning] Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/lib/php5)

GET /products/tyres/vehicleSearch

Line 0 in Unknown

Trace