Controller Missing

This error page generate dynamically by this framework.

We found missing classes for:

Home_Controller()

To solve this problem, please create filename:

home.php

Then save at:

/home/attilawa/public_html/e-filling/application/controllers/
Or
/home/attilawa/public_html/e-filling/application/<area name>/<controller_name>/

Example source code inside this file will look like:

<?php
class Home_Controller extends AppController
{
	public function index()
	{
		... your code here ...
	}
}
?>