Кто-то устанавливал Kohana на Ubuntu, або плагин для нетбинса?
Расскажите как все там настроить?
Пользователь решил продолжить мысль 19 Июня 2011, 00:29:08:
SYSPATH/classes/kohana/request/client/internal.php [ 94 ]
89 // Initiate response time
90 $this->_response_time = time();
91
92 if ( ! class_exists($prefix.$controller))
93 {
94 throw new HTTP_Exception_404('The requested URL :uri was not found on this server.',
95 array(':uri' => $request->uri()));
96 }
97
98 // Load the controller using reflection
99 $class = new ReflectionClass($prefix.$controller);
SYSPATH/classes/kohana/request.php [ 1129 ] » Kohana_Request_Client_Internal->execute(arguments)
1124 throw new Kohana_Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array(
1125 ':uri' => $this->_uri,
1126 ));
1127 }
1128
1129 return $this->_client->execute($this);
1130 }
1131
1132 /**
1133 * Returns whether this request is the initial request Kohana received.
1134 * Can be used to test for sub requests.
DOCROOT/index.php [ 109 ] » Kohana_Request->execute()
104 /**
105 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO'].
106 * If no source is specified, the URI will be automatically detected.
107 */
108 echo Request::factory()
109 ->execute()
110 ->send_headers()
111 ->body();