Kohana v3.03 reset
A reset of my Kohana v3 tutorial Continue reading
A reset of my Kohana v3 tutorial Continue reading
Here’s how I created a base controller for websites I develop using Kohana v3 1. create a website config file ( application/config/website.php ): <?php defined(‘SYSPATH’) OR die(‘No Direct Script Access’); return array( ‘site_name’ => ‘Example site’,); <?php defined(‘SYSPATH’) OR die(‘No Direct Script Access’); return array( ‘site_name’ => ‘Example site’, );… Continue reading
Now that you have Kohana v3 installed, let’s remove “index.php” from all the URLs to help our SEO capabilities. Rename the file “example.htaccess” to “.htaccess” or merge its contents if you already have one in place. You should change the line: RewriteBase /kohana to point to the folder where your… Continue reading
These are the things I needed to change on .httacess to have kohana default files working before creating my first controller: # Turn on URL rewriting RewriteEngine On # Installation directory RewriteBase /kohana/ # Protect hidden files from being viewed <Files .*> Order Deny,Allow Deny From All </Files> # Protect… Continue reading
New Kohana version is out, grab it from here: http://dev.kohanaphp.com/projects/kohana3/files And again, extract to a folder on your web server. On good thing to do is extract both “Application” and “System” into a folder accessible to the user your webserver runs (usually, apache, nobody, httpd) and change the paths inside… Continue reading
Let’s start working with Kohana (I’ve actually been working with it for a while and thought would be nice to share my experiences)! First thing you want to do is download it and extract it to a folder on your webserver. You can read about it and download it at:… Continue reading
Deprecated: printf(): Passing null to parameter #1 ($format) of type string is deprecated in /var/www/vhosts/blog.portnumber53.com/html/wp-content/themes/mantra/includes/theme-comments.php on line 86