On Oct 19, 11:18 am, Dunc <[email protected]> wrote: > Hi, > > I've implimented CakePHP's app_error.php file to keep track of any > system errors via email, using the system detailed here: > > http://nuts-and-bolts-of-cakephp.com/2008/08/29/dealing-with-errors-i... > > The problem I have is I'm getting through a huge number of messages > telling me there's no action for img (see below). I thought it must > be a missing image, but I've checked the code and run through the site > whilst running Fiddler, and there doesn't seem to be any missing > images. > > Has anyone come across this before? If so, what was the problem and > how was it fixed?
Obviously the error /is/ that you've got a relative reference to an image somewhere, the fix is to find it, and correct it ;) Why not log the current url and the referer to see where the error is coming from. IME something like that is caused by your WYSIWYG editor (or some other js you didn't write yourself) using a relative route for a placeholder image or the likes. I'd start by looking at your Reporting controller's links/js files ;). hth AD Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. 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
