So I am struggling migrating to a linux server. I get the error
ErrorException [ Fatal Error ]: Class 'Model_Game' not found
My file structure is
application/classes/Model/game.php
And the model definition is
class Model_Game extends ORM {
protected $_table_name = 'game';
protected $_primary_key = 'game_id';
...
}
This works in my windows environment, but not in my linux environment. From my understanding this is correct