Re: After moving from windows to Ubuntu, getting Missing View error

2009-07-15 Thread Jorge Horacio Cué Cantú
Wel, not exactly. I have Cake in Ubunto 9.04, and it works well. I have some questions: Make shure the web server You are using does have access to all your application, cake and vendors tree. - You can ensure this with the following commands: - sudo find -type d -exec chmod 755 {}

Re: After moving from windows to Ubuntu, getting Missing View error

2009-07-14 Thread GravyFace
Also check your permissions; www-data needs at least read permissions on your files/directories, but check the Linux installation guide for CakePHP (you'll need to grant rw to the tmp directory, etc.). On Tue, Jul 14, 2009 at 11:08 AM, MrMeikel wrote: > > Not very experienced with Linux. But my f

Re: After moving from windows to Ubuntu, getting Missing View error

2009-07-14 Thread MrMeikel
Not very experienced with Linux. But my first guess would be that Linux uses case-sensitive file names - check all your views to make sure they are correctly cased (I do not know what the correct casing is in this situtation). On Jul 14, 8:24 am, Prabu wrote: > Hi, > > I just moved my cake app f

After moving from windows to Ubuntu, getting Missing View error

2009-07-14 Thread Prabu
Hi, I just moved my cake app folder from windows to ubuntu and getting this error : missing view (could not find .ctp) In my controller I have two methods like this: function foo1($viewtype = null) { // loads data here... $this->render($viewtype, 'ajax'); } function fo