Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!
<?php echo “Hello world”; ?>
Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!
<?php echo “Hello world”; ?>
Currently I noticed about kohana. It is a CodeIgniter’s(CI) fork. It seems handy to me. It have extra module for support like authentication, GMap, E-commerce etc. The main thing attracted me is its ORM support. And another reason is its support for loadingany library or model automatically.
Here is an example to load a library named Calender:-
For CI:
$this->load->library(‘calender’);
$this->calender->print;
For kohana the statments are:
$calender = new Calender;
$calender->print();
ORM is another important difference with CI and Kohana. Hope everyone will like kohana.
Khilgaon, Dhaka
Today I found a problem working with CodeIgniter. When I tried to check my current in live site it says “No Input file specified“. I googled it and founded that the problem was not with CI. It occurs when website in PHP scripts runs in APACHE CGI server. If there is no file in requested URL Apcache raises this error, that is if the pages are generated dynamically like Joomla/CI etc. There are lots of solution in the net.
The solution I found for CI is described here.
Open CI’s config.php file from application folder. Configure these two lines
$config[‘index_page’] = “index.php?”; //remeber index.php + ?
$config[‘uri_protocol’] = “AUTO”;
Now the change in your URL will be like this
http://www.example.com/index.php?/controller/function
Please inform me if there are better solution instead of .htaccess. Wish it will help you who face this kind of problem with CodeIgniter.
Kowser
Khilgaon, Dhaka
I was planning to start my blog for a long time. In the end I have started with blogspot. I will try to say about my thoughts, my expedition to this virtual world…… actually i will try to say about everything don’t know what to kept inside me…. I will try to make it my another shadow…. 🙂
The reason behind making the name of blog as “faded Speech” is…. I think I am not too loud too reach my voice to all the listener… Don’t know how it will go on.. I wish u will like it.
Welcome everyone in my little world…..
Kowser
Khilgaon, Dhaka