[500] EInvalidOperation

Description

Component of name app.function.include was not found or failed to load

[Warning]
Application::include() [function.include]: Failed opening '' for inclusion (include_path='.:/usr/share/php:/usr/share/pear')
In file /opt/sites/transatlantica.travel/core/Application.php
At line 24

Source File

TApplication.php (Line: #28)

  ...
} public function run($component=null, $params=null) { $user = $component == null; $comp = $user ? $this->getRequestedComponent() : $component; $ns = Application::ResolveNS($comp); $file = realpath($ns['file']); if ($user && $ns['type'] != 'app') { throw new Exception("Component <b>$component</b> was not found"); } Application::Uses($comp); $comp = new $ns['class'](); $comp->run($params); if ($comp instanceof TVisualComponent) { $comp->render(); } return $comp; } public function finish() { // To be implemented } ...

Stack Trace

#0 /opt/sites/transatlantica.travel/core/TApplication.php(28): Application::Uses('app.function.in...')
#1 /opt/sites/transatlantica.travel/index.php(10): TApplication->run()
#2 {main}