Controller Missing

This error page generate dynamically by this framework.

We found missing classes for:

Public_Controller()

To solve this problem, please create filename:

public.php

Then save at:

./application/controllers\

Example source code inside this file will look like:

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