This kind of bug is best discovered by isolation.
You need to think of ways you can swap out and isolate specific pieces
of all the technologies.
Since it seems to be something in the model logic, sql or database
(data). I would first try a simple test of pointing the live site db
to your dev db.
This can easily be done without effecting your live users by adding an
additional database configuration to the DATABASE_CONFIG class in
config\database.php
Then you add a check in your app_controller.php
AppController.beforeFitler() for your machines ip.
if($this->RequestHandler->getClientIP() == 'What ever your ip is'{
$useDbConfig = ‘myDevConfig’;
}
Test your code to see if it locks up. If it does, then the problem is
not in your Data or the database Schema.
Next test would be to identify in the model code what has changed
since your version of 1.2.5xxx
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---