I developed a small application with Codeigniter and brought it to run with vagrant and Debian. And everything was fine.
So now I'm trying to set up a virtual machine with Xubuntu 15.04. Installed the same packages (PHP as an Apache module)
Now I'm getting the following error:
Unable to locate the model you have specified: Person_model
This is how I load my model:
$this->load->model('person_model');
And this is how my model actually looks like in models/person_model.php
<?php
class Person_model extends CI_Model {
function __construct() {
parent::__construct();
}
// ...
}
On Xubuntu I'm running PHP 5.6.4-4ubuntu6.2 and on Debian I'm running PHP 5.4.41-0+deb7u1
Thanks for any advice and help!