Error!
Fuel\Core\FuelException [ Error ]:
The requested view could not be found: lp/_menu_lp.php
COREPATH/classes/view.php @ line 477
472 } 473 474 // did we find it? 475 if ( ! $this->file_name) 476 { 477 throw new \FuelException('The requested view could not be found: '.\Fuel::clean_path($search['file']).'.'.$search['extension']); 478 } 479 480 return $this; 481 } 482
Backtrace
-
APPPATH/classes/view.php @ line 9
4 public function set_filename($file,$reverse=false) { 5 if (Wss_Utility::isWssSmartphone() == 2) { 6 $file = 'sp/' . $file; 7 } 8 9 return parent::set_filename($file,$reverse); 10 } 11 12}
-
COREPATH/classes/view.php @ line 126
121 122 $this->filter_closures = \Config::get('filter_closures', true); 123 124 if ($file !== null) 125 { 126 $this->set_filename($file); 127 } 128 129 if ($data !== null) 130 { 131 // Add the values to the current data
-
COREPATH/classes/view.php @ line 96
91 * @param bool $auto_filter 92 * @return View 93 */ 94 public static function forge($file = null, $data = null, $auto_filter = null) 95 { 96 return new static($file, $data, $auto_filter); 97 } 98 99 /** 100 * Sets the initial view filename and local data. 101 *
-
COREPATH/base.php @ line 229
224 */ 225if ( ! function_exists('render')) 226{ 227 function render($view, $data = null, $auto_filter = null) 228 { 229 return \View::forge($view, $data, $auto_filter)->render(); 230 } 231} 232 233/** 234 * A wrapper function for Lang::get()
-
APPPATH/views/lp/view.php @ line 2
0 1<div id="lp_view"> 2 <?php echo render("lp/_menu_" . $top_menu); ?> 3 <div style="clear:both;"></div> 4</div>
-
COREPATH/classes/view.php @ line 244
239 ob_start(); 240 241 try 242 { 243 // Load the view within the current scope 244 include $__file_name; 245 } 246 catch (\Exception $e) 247 { 248 // Delete the output buffer 249 ob_end_clean();
-
COREPATH/classes/view.php @ line 260
255 // Get the captured output and close the buffer 256 return ob_get_clean(); 257 }; 258 259 // import and process the view file 260 $result = $clean_room($file_override ?: $this->file_name, $data = $this->get_data()); 261 262 // disable sanitization on objects that support it 263 $this->unsanitize($data); 264 265 // return the result
-
COREPATH/classes/view.php @ line 665
660 { 661 throw new \FuelException('You must set the file to use within your view before rendering'); 662 } 663 664 // combine local and global data and capture the output 665 $return = $this->process_file(); 666 667 // restore the current language setting 668 $this->active_language and \Config::set('language', $current_language); 669 670 // and the active request class
-
COREPATH/classes/view.php @ line 213
208 */ 209 public function __toString() 210 { 211 try 212 { 213 return $this->render(); 214 } 215 catch (\Exception $e) 216 { 217 \Errorhandler::exception_handler($e); 218
-
APPPATH/views/template.php @ line 1
0 1 <?php echo $content; ?>
-
COREPATH/classes/view.php @ line 244
239 ob_start(); 240 241 try 242 { 243 // Load the view within the current scope 244 include $__file_name; 245 } 246 catch (\Exception $e) 247 { 248 // Delete the output buffer 249 ob_end_clean();
-
COREPATH/classes/view.php @ line 260
255 // Get the captured output and close the buffer 256 return ob_get_clean(); 257 }; 258 259 // import and process the view file 260 $result = $clean_room($file_override ?: $this->file_name, $data = $this->get_data()); 261 262 // disable sanitization on objects that support it 263 $this->unsanitize($data); 264 265 // return the result
-
COREPATH/classes/view.php @ line 665
660 { 661 throw new \FuelException('You must set the file to use within your view before rendering'); 662 } 663 664 // combine local and global data and capture the output 665 $return = $this->process_file(); 666 667 // restore the current language setting 668 $this->active_language and \Config::set('language', $current_language); 669 670 // and the active request class
-
COREPATH/classes/view.php @ line 213
208 */ 209 public function __toString() 210 { 211 try 212 { 213 return $this->render(); 214 } 215 catch (\Exception $e) 216 { 217 \Errorhandler::exception_handler($e); 218
-
DOCROOT/index.php @ line 114
109 throw $e; 110 } 111} 112// This will add the execution time and memory usage to the output. 113// Comment this out if you don't use it. 114if (strpos($response->body(), '{exec_time}') !== false or strpos($response->body(), '{mem_usage}') !== false) 115{ 116 $bm = Profiler::app_total(); 117 $response->body( 118 str_replace( 119 array('{exec_time}', '{mem_usage}'),