TIP: Use Markdown or, <pre> for multi line code blocks / <code> for inline code.
Kohana v3.0.7 Released!
  • Kohana version 3.0.7 has just been tagged and uploaded. Get it while it is hot!

    For a complete list of issues closed, see the "issues closed" link below. Notable highlights are: improved XSS security, better Request handling, UTF8 class extensibility, test coverage increased, OAuth and Unit Test module added to default installation, and improvements to the userguide.

    Some links of interest:

    Please report all new issues against v3.0.8.

    If you use Kohana for or at work, please consider donating. We appreciate your support!

  • nice thx
  • Thank you sir!
  • I don't get a lot of traffic, but I did a little write-up on my blog:

    http://www.danhulton.com/blog/2010/07/12/kohana-3-0-7-is-here/

    Hopefully that drives a couple more people your way. Excellent job on the update.
  • nice! thanks a lot!

    minor thing, got some colleagues to try it out and found that the installation path in example.htacces and the base_url in application/bootstrap are not synced.

    # Installation directory
    RewriteBase /kohana/

    -----

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

    * for people who are trying it for the first time and don't have a clue what's wrong
  • Great! Updating now. Thanks for you hard work!
  • thank you :)
  • Hi am new to kohana, I am using kohana 3.0.7, but the url wont work until i put index.php between, example : instead of http://kohana/mycontroller i have to write http://kohana/index.php/mycontroller, i have set the rewrite base to kohana which is my kohana folder

    my bootstrap.php base url looks like this

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

    how can i get rid of the index.php in my urls

    help, help , help
  • sebastianliduke:

    Kohana::init(array(
        'base_url'   => '/kohana',
        'index_file' => false,
    ));
    
  • i tried


    Kohana::init(array(
    'base_url' => '/kohana',
    'index_file' => false,
    ));

    it didn't work ...
  • Maybe your .htaccess didn't work.
  • may be

    my .htaccess is


    # Turn on URL rewriting
    RewriteEngine On

    # Installation directory
    RewriteBase /kohana/

    # Protect hidden files from being viewed

    Order Deny,Allow
    Deny From All


    # Protect application and system files from being viewed
    RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]

    # Allow any files or directories that exist to be displayed directly
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    # Rewrite all other URLs to index.php/URL
    RewriteRule .* index.php/$0 [PT]
    ~
    ~
    ".htaccess" 21 lines, 524 characters


    I tried to change the rewriteBase to something else but it didnt give me any error, does this means that my .htaccess file is not detected by kohana?
  • It is Apache. open your apache config file (httpd.conf) and look for AllowOverride (for the document root), set to all:

    AllowOverride All

    then your .htaccess should work
  • Ooh thanx man, that worked....


    thanx a lot..!
This discussion has been closed.
All Discussions