Re: question: file not found or missing controller error?

2009-08-17 Thread Martin Westin
Configure::write('debug', n ); Setting debug to 0 will make make respond with a 404. Anytime debug is on (more than 0), Cake expects you to be building or testing the application. Cake does not try to make a difference between the missing file /posts/edit/1 and /files/images/ not_here.jpg. It

Re: question: file not found or missing controller error?

2009-08-17 Thread WebbedIT
Thanks Martin, so the real answer to my question was .. yes, you are just being daft :o) Just goes to show I have not put a CakePHP project into production. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP

Re: question: file not found or missing controller error?

2009-08-17 Thread Martin Westin
If you don't deal with the webserver config much it would be easy to overlook that the whole Cake app more or less acts as an error page for missing files. Any real file is sent directly and any missing file results in php and Cake getting the url to try to make sense of it. On Aug 17, 10:08 

question: file not found or missing controller error?

2009-08-16 Thread WebbedIT
I have just started uploading files using the plug-in found at: http://www.milesj.me/resources/script/uploader-plugin I have this all working fine, so I can recommend the plug-in for a fast and easy solution to uploading files. Now that I have a selection of files uploaded to the server I want