铁拳2012在线播放:(安装问题)Kohana 安装流程以及所遇到问题的解决方法

来源:百度文库 编辑:九乡新闻网 时间:2024/04/29 02:30:24

步骤1.
Download kohana from : http://v3.kohanaphp.com (Version:3.0.3.zip);
(included update for v3.0.8 on step9)
步骤2.
Uncompress kohana_3.0.3 and copy kohana folder to C:\xampp\htdocs and rename kohana to 'home’
步骤3.
start XAMPP apache service from XAMPP control panel
步骤4.
Input: http://localhost/home/index.php
Show error below
cURL Enabled Kohana requires cURL for the Remote class. 
步骤5.
Open C:\xampp\php\php.ini file and remove ';’ from

1extension=php_curl.dll

in php.ini
步骤6.
Restart Apache service.
步骤7.
Input: http://localhost/home/index.php again.
Show Your environment passed all requirements.
Remove or rename the install.php file now.

步骤8. Rename install.php to other_Name.php
input: http://localhost/home/index.php again.
Show Kohana_Request_Exception [ 0 ]: Unable to find a route to match the URI: home/index.php
步骤9.
Open C:\xampp\htdocs\home\application\bootstrap.php
find

1Kohana::init(array('base_url' => '/kohana/'));

Modify the /kohana/ to /home/

if installed V3.0.8

1Kohana::init(array(2    // find the line below and commented it3        //'base_url'   => '/',4        // insert the line below5    'base_url'   => '/home/',6));

步骤10.
input: http://localhost/home/index.php again.
Show hello, world!
congratulations!