I developed an application on my MAC and it works like a charm. I use MAMP
I want to port it to a Windows environment - I am using XAMPP to serve the application. But I can not logon to the application: I get a fatal error 'Class table_users not found at line 3966 of table.php.
So I went to table .php line 3965 and see that $delegate_name = "table_.$this->tablename;
then at 3966 $this->delegate = new $delegate_name();
now since the fatal error referenced table_users it must know that $delegate_name() is table_users but it is choking on the new $delegate.
I think there is something more basic going on because the app works fine on my MAC and is choking in Windows xp