I need some background information about CakePHP, and how it works...
let's say that i have method (function) defined in CakePHP's controller, ie. deleteItem, like
function deleteItem( $id = null )
{
$this->PublicationNumeration->delete( $id, true );
}
The CMS I developed works ok, proper record is deleted ($id), and it works fine.
But if I try to call this method from browser, I am getting the error 'page not found'.
Is it possible to skip that error (no matter how)?