fork download
<?php
<?php defined('SYSPATH') or die('No direct script access.');

// -- Environment setup --------------------------------------------------------

// Load the core Kohana class
require SYSPATH.'classes/Kohana/Core'.EXT;

if (is_file(APPPATH.'classes/Kohana'.EXT))
{
	// Application extends the core
	require APPPATH.'classes/Kohana'.EXT;
}
else
{
	// Load empty core extension
	require SYSPATH.'classes/Kohana'.EXT;
}

/**
 * Set the default time zone.
 *
 * @link http://k...content-available-to-author-only...k.org/guide/using.configuration
 * @link http://w...content-available-to-author-only...p.net/manual/timezones
 */
#date_default_timezone_set('America/Chicago');
date_default_timezone_set('Asia/Yekaterinburg');

/**
 * Set the default locale.
 *
 * @link http://k...content-available-to-author-only...k.org/guide/using.configuration
 * @link http://w...content-available-to-author-only...p.net/manual/function.setlocale
 */
setlocale(LC_ALL, 'en_US.utf-8');

/**
 * Enable the Kohana auto-loader.
 *
 * @link http://k...content-available-to-author-only...k.org/guide/using.autoloading
 * @link http://w...content-available-to-author-only...p.net/manual/function.spl-autoload-register
 */
spl_autoload_register(array('Kohana', 'auto_load'));

/**
 * Optionally, you can enable a compatibility auto-loader for use with
 * older modules that have not been updated for PSR-0.
 *
 * It is recommended to not enable this unless absolutely necessary.
 */
//spl_autoload_register(array('Kohana', 'auto_load_lowercase'));

/**
 * Enable the Kohana auto-loader for unserialization.
 *
 * @link http://w...content-available-to-author-only...p.net/manual/function.spl-autoload-call
 * @link http://w...content-available-to-author-only...p.net/manual/var.configuration#unserialize-callback-func
 */
ini_set('unserialize_callback_func', 'spl_autoload_call');

// -- Configuration and initialization -----------------------------------------

/**
 * Set the default language
 */
I18n::lang('en-us');
#I18n::lang('ru-ru');
/**
 * Set Kohana::$environment if a 'KOHANA_ENV' environment variable has been supplied.
 *
 * Note: If you supply an invalid environment name, a PHP warning will be thrown
 * saying "Couldn't find constant Kohana::<INVALID_ENV_NAME>"
 */
# PRODUCTION готовый проект
# STAGING подготовка
# TESTING тестирование
# DEVELOPMENT разработка

Kohana::$environment=Kohana::DEVELOPMENT;
if (isset($_SERVER['KOHANA_ENV']))
{
	Kohana::$environment = constant('Kohana::'.strtoupper($_SERVER['KOHANA_ENV']));
}

/**
 * Initialize Kohana, setting the default options.
 *
 * The following options are available:
 *
 * - string   base_url    path, and optionally domain, of your application   NULL
 * - string   index_file  name of your index file, usually "index.php"       index.php
 * - string   charset     internal character set used for input and output   utf-8
 * - string   cache_dir   set the internal cache directory                   APPPATH/cache
 * - integer  cache_life  lifetime, in seconds, of items cached              60
 * - boolean  errors      enable or disable error handling                   TRUE
 * - boolean  profile     enable or disable internal profiling               TRUE
 * - boolean  caching     enable or disable internal caching                 FALSE
 * - boolean  expose      set the X-Powered-By header                        FALSE
 */
Kohana::init(array(
	'base_url'   => '/kohana/',
	'index_file' => false,
	'errors' => TRUE
));

/**
 * Attach the file write to logging. Multiple writers are supported.
 */
Kohana::$log->attach(new Log_File(APPPATH.'logs'));

/**
 * Attach a file reader to config. Multiple readers are supported.
 */
Kohana::$config->attach(new Config_File);

/**
 * Enable modules. Modules are referenced by a relative or absolute path.
 */
Kohana::modules(array(
	// 'auth'       => MODPATH.'auth',       // Basic authentication
	// 'cache'      => MODPATH.'cache',      // Caching with multiple backends
	// 'codebench'  => MODPATH.'codebench',  // Benchmarking tool
	// 'database'   => MODPATH.'database',   // Database access
	// 'image'      => MODPATH.'image',      // Image manipulation
	// 'minion'     => MODPATH.'minion',     // CLI Tasks
	// 'orm'        => MODPATH.'orm',        // Object Relationship Mapping
	// 'unittest'   => MODPATH.'unittest',   // Unit testing
	// 'userguide'  => MODPATH.'userguide',  // User guide and API documentation
	 'twig'       => MODPATH.'twig',       // Twig templating engine
	 'pagination' => MODPATH.'pagination', // Pagination
	 'menu' => MODPATH.'menu', // Navigation1
	 //'navigation' => MODPATH.'navigation', // Navigation
	));

/**
 * Set the routes. Each route must have a minimum of a name, a URI and a set of
 * defaults for the URI.
 */
// Route::set('about', 'about')
// 	->defaults(array(
// 		'controller' => 'static',
// 		'action'     => 'about',
// 	));
// Route::set('contacts', 'contacts')
// 	->defaults(array(
// 		'controller' => 'static',
// 		'action'     => 'contacts',
// 	));
Route::set('static','<action>(/<id>)',array('action'=>'about|contacts'))
	->defaults(array(
		'controller' => 'static',
	));
Route::set('comments', 'comments/<id>',array('id'=>'.+'))
	->defaults(array(
		'controller' => 'comments',
		'action'     => 'index',
	));
/*Route::set('articles', 'articles(/<id>)',array('id'=>'.+'))
	->defaults(array(
		'controller' => 'articles',
		'action'     => 'index',
	));*/
Route::set('category', 'category(/<name>(/<page>))',array('name' => '[a-zA-Z_-]+','page'=>'[0-9]+')) // проблемное место
	->defaults(array(
		'controller' => 'category',
		'action'     => 'index',
	));
Route::set('articles', 'articles(/page/<num>)',array('num' => '[0-9]+'))
	->defaults(array(
		'controller' => 'articles',
		'action'     => 'index',
	));	
Route::set('default', '(<controller>(/<action>(/<id>)))')
	->defaults(array(
		'controller' => 'index',
		'action'     => 'index',
	));
Cookie::$salt = 'foobar';
// your code goes here
Runtime error #stdin #stdout #stderr 0.01s 20592KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected '<' in /home/iApw28/prog.php on line 2