Copy link to clipboard
Copied
I am having a really weird issue. For one app I am building I am occassionaly getting random errors related to my ORM entities. I thought I had it resolved yesterday to just come back in and find the problem back. The big one is:
I have no idea what the problem is, the file is there. I have two similar apps on the same machine (one for admin, one for the public side). They have their own ORM objects and the one on the admin side seems fine, the one of the public side has this problem. The apps have different names, so I think they should be treated separately, right? Am I running into some sort of namespace issue?
Any thoughts would be greatly appreciated. I have lost 2 days to this annoying issue.
-Bill
Copy link to clipboard
Copied
if it helps, the other error I am getting is that CF "Cannot load the target CFC ...." even though it is there and in the same folder from the parent cfc.
Copy link to clipboard
Copied
Hi Bill,
You might try posting this question over at the CF ORM Google Group.
http://groups.google.com/group/cf-orm-dev
Marc
Copy link to clipboard
Copied
Thanks, Marc. I am stil getting some inconsistant behavior, but for today, the problem is resolved. I am not sure which of the umpteen thousand things I tried fixed it. Who knows maybe it will return after I reboot.
-B
Copy link to clipboard
Copied
Bill,
One thing I wondered: is it possible that you have an ORMReload()
somewhere, and at the time you're getting the error, some other
request is causing ORMReload() to be run?
One thing I've relied on in the past when tracking down these weird
issues are the weblogs. Check the weblogs to find out what else is
going on at exactly the same time as the error you're getting. That
can often be quite revealing.
Good luck!
Marc