I am developing a website using ATK4, a php framework with jquery.
I have developed this on my laptop using localhost/test1 as the directory and with a local php dat
Class 'model_TaskType' not found in
you should always use exact capitalization.
if you have Model_TaskType, it should be Model_TaskType when added to CRUD.
also this place:
$this->addField('tasktype_id')->refModel('model_TaskType')->mandatory(true);
should be:
$this->addField('tasktype_id')->refModel('Model_TaskType')->mandatory(true);
On widows, file name capitalization does not make a difference, where as in linux it does.