Re: Missing View

2013-06-11 Thread Julien Itard
Salut, tu es sure et certaine que c'est crée ? la même extension .ctp ? même dossier Posts avec un s ? Si tu veux plus de réponse tu dois parler anglais ici ! Julien -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this mes

Missing View

2013-06-10 Thread Safa Ksouri
salut, je suis débutante en cakephp , en suivant le tuto de blog je me bloque au niveau de création de view ; *Error: * The view for *PostsController::**index()* was not found. *Error: * Confirm you have created the file: /home/safa/workspace/cakephp/app/View/Posts/index.ctp *malgré que c'est c

Re: Missing View

2012-11-30 Thread euromark
if it is the "Users" Controller it should be in "Users" folder (not the plural s) why would your application look in the "User" folder? thats what you got to figure out Am Freitag, 30. November 2012 11:19:21 UTC+1 schrieb marco metal: > > You should create a ctp file index.ctp inside you folder

Re: Missing View

2012-11-30 Thread Tilen Majerle
make sure, that file below exists: C:\wamp\www\cakephp\app\View\User\index.ctp -- Lep pozdrav, Tilen Majerle http://majerle.eu 2012/11/30 the beginner > hello. > > im new here. > somebody can tell me what should i do to overcome this error : > > *Error: *The view for *UsersController::**inde

Re: Missing View

2012-11-30 Thread Marcus James
You should create a ctp file index.ctp inside you folder c:\wamp\www\cakephp\app\view\user\ -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed to the Google Groups "CakePHP" group. To po

Missing View

2012-11-30 Thread the beginner
hello. im new here. somebody can tell me what should i do to overcome this error : *Error: *The view for *UsersController::**index()* was not found. *Error: *Confirm you have created the file: C:\wamp\www\cakephp\app\View\User\index.ctp -- Like Us on FaceBook https://www.facebook.com/CakePHP

Re: Missing View

2012-06-15 Thread koray
have some view for example user/login. > i dont have error for Missing View in my pc but when i am upload this file > in my host i have Missing View error. > > some view work fine bu some view dont > > this is my error: > > > Error: The view for UsersController::register

Re: Missing View

2012-06-15 Thread lowpass
Maybe permissions. Check that the server can read the files and both read and execute the directories. On Fri, Jun 15, 2012 at 8:13 AM, hoss7 wrote: > hi > i have some view for example user/login. > i dont have error for Missing View in my pc but when i am upload this file > in my

Missing View

2012-06-15 Thread hoss7
hi i have some view for example user/login. i dont have error for Missing View in my pc but when i am upload this file in my host i have Missing View error. some view work fine bu some view dont this is my error: Error: The view for UsersController::register() was not found. Error: Confirm

Re: Missing View Error: The view for UsersControllerController::login() was not found.

2011-12-15 Thread AD7six
On Dec 14, 8:07 pm, Parthasarathy Ramanujam wrote: > Isn't the default routing mapping forRL say /users/login = > UsersController->login(); Why then does my app get an additional Controller > suffix appended? Look at the error message - it's saying it can't find a view file, it found your contr

Re: Missing View Error: The view for UsersControllerController::login() was not found.

2011-12-14 Thread Miloš Vučinić
changing this line: > > > Router::connect('/', array('controller' => 'pages', 'action' => > >  'display', 'home')); > > > to > > > Router::connect('/', array('controller' => 'users&

Re: Missing View Error: The view for UsersControllerController::login() was not found.

2011-12-14 Thread Parthasarathy Ramanujam
'controller' => 'pages', 'action' => > 'display', 'home')); > > to > > Router::connect('/', array('controller' => 'users', 'action' => 'login')); > > However I now

Missing View Error: The view for UsersControllerController::login() was not found.

2011-12-14 Thread Parthasarathy Ramanujam
27;, array('controller' => 'pages', 'action' => 'display', 'home')); to Router::connect('/', array('controller' => 'users', 'action' => 'login')); However I now get the error *Missing Vi

shell missing view

2010-03-30 Thread cricket
PHP Notice: Undefined variable: action in /usr/lib/php/cake_1.2.5/ cake/console/error.php on line 150 PHP Notice: Undefined variable: className in /usr/lib/php/cake_1.2.5/ cake/console/error.php on line 150 Error: Missing View '' for '' in '' -- snip -- The cron job

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

2009-07-15 Thread Jorge Horacio Cué Cantú
t casing > > is in this situtation). > > > > On Jul 14, 8:24 am, Prabu wrote: > >> Hi, > >> > >> I just moved my cake app folder from windows to ubuntu and getting > >> this error : missing view (could not find .ctp) > >> > >>

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

2009-07-14 Thread GravyFace
ed 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->rende

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

2009-07-14 Thread MrMeikel
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, '

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'); }

Re: Route All Missing View Errors To App Controller Method

2009-04-08 Thread deedod
Thanks Brian. This should do the trick. Much appreciated. - D --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this

Re: Route All Missing View Errors To App Controller Method

2009-04-07 Thread brian
Have a look here: http://teknoid.wordpress.com/2008/08/29/dealing-with-errors-in-cakephp/ On Tue, Apr 7, 2009 at 2:09 AM, deedod wrote: > > Hello Everyone, > > Is there an easy way to route all 'missing view' error messages > through a defined method in the app_cont

Route All Missing View Errors To App Controller Method

2009-04-06 Thread deedod
Hello Everyone, Is there an easy way to route all 'missing view' error messages through a defined method in the app_controller (or any controller for that matter)? Also, is the same possible for 'missing controller' errors? My site's header and footer are database d

Re: Missing View

2009-01-20 Thread brian
* >> >> As I noted in my previous post, the first route I created works just >> fine. Its the second one that I am having problems with. >> >> gkc >> >> On Jan 20, 2:52 pm, brian wrote: >

Re: Missing View

2009-01-20 Thread gkc
> > As I noted in my previous post, the first route I created works just > fine.  Its the second one that I am having problems with. > > gkc > > On Jan 20, 2:52 pm, brian wr

Re: Missing View

2009-01-20 Thread gkc
am having problems with. gkc On Jan 20, 2:52 pm, brian wrote: > Just as Cake isn't clairvoyant, neither are we[1]. At the very least, > post the routes you created. > > [1] ok, speaking for myself. > > On Tue, Jan 20, 2009 at 3:18 PM, gkc wrote: > > > I star

Re: Missing View

2009-01-20 Thread brian
troller/ route. Everything is working just > fine. I then did it again to make a third controller/ route but this > time I am getting 'Missing View' errors. All the controllers code and > routes are the same, except for making the appropriate name changes to > stay in line with the

Missing View

2009-01-20 Thread gkc
I started off withe the default pages controller and route and used it to create another controller/ route. Everything is working just fine. I then did it again to make a third controller/ route but this time I am getting 'Missing View' errors. All the controllers code and routes ar

If I has click the delete button is fast, cakephp got a 'Missing View' error.

2009-01-09 Thread Rimoe
hi, everyone! If I has click the delete button is fast, cakephp got a 'Missing View' error. why is it? RImoe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this

Re: missing view

2008-09-09 Thread David Christopher Zentgraf
On 9 Sep 2008, at 16:28, David C. Zentgraf wrote: > The URL /test implies /test/index, which means Cake will look for > this: > > app/controllers/test_controller.php (needs to have function index()) > app/views/test/index.ctp (or .thtml for Cake 1.1) Forgot of course that test_controller.php i

Re: missing view

2008-09-09 Thread David C. Zentgraf
I have > created a default.thml in layouts, with the code $content_for_layout; ?>, then I created a test.thtml in pages, I point > the server to it and get a missing view error - anyone any ideas? > > > --~--~-~--~~~---~--~~ You received this

Re: missing view

2008-09-08 Thread Ranjana Sriavastava
ews. > > > > On Mon, Sep 8, 2008 at 9:57 PM, gabriel <[EMAIL PROTECTED]> wrote: > > > > > Hi, I am new to cake and are really frustrated with the basics. I have > > > created a default.thml in layouts, with the code > > $content_for_layout; ?>, the

Re: missing view

2008-09-08 Thread Donkeybob
am new to cake and are really frustrated with the basics. I have > > created a default.thml in layouts, with the code > $content_for_layout; ?>, then I created a test.thtml in pages, I point > > the server to it and get a missing view error - anyone any ideas? --~--~-~--~--

Re: missing view

2008-09-08 Thread Ranjana Sriavastava
ed a test.thtml in pages, I point > the server to it and get a missing view error - anyone any ideas? > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group,

Re: missing view

2008-09-08 Thread Gonzalo Servat
erver to it and get a missing view error - anyone any ideas? > If you're using CakePHP 1.2, you probably want test.tpl and default.tpl, unless you changed the extension in the config. - Gonzalo --~--~-~--~~~---~--~~ You received this message because you are su

missing view

2008-09-08 Thread gabriel
Hi, I am new to cake and are really frustrated with the basics. I have created a default.thml in layouts, with the code , then I created a test.thtml in pages, I point the server to it and get a missing view error - anyone any ideas? --~--~-~--~~~---~--~~ You

v1.2 Trailing Slash / Missing View Issue

2007-08-20 Thread lmuszkie
Good afternoon - I just upgraded from 1.1.14.4797 to 1.2.0.5427alpha and found that accessing static pages with a trailing slash triggers the missing views error. //this works properly http://example.com/pages/about //this doesn't http://example.com/pages/about/ The problem occurs on both my l

Re: New to Cake, Missing View Errors (?)

2007-01-01 Thread Derrick Shields
I figured it out. A reference for anyone who runs into this error in the future: I had to change the permissions on the view.php file located in the /cake core to 755. For some reason, the version of Cake I had downloaded had the incorrect permissions set. --~--~-~--~~---

Re: New to Cake, Missing View Errors (?)

2007-01-01 Thread skyblueink
If you're following along with the blog tutorial withoit any modifications of the example code, your intex.thtml and view.thtml should be in app/views/posts/ instead of app/views/pages/. The error message is already saying that ithey shoud be in /.../httpdocs/app/views/posts/. As you know, Cake i

Re: New to Cake, Missing View Errors (?)

2006-12-31 Thread Derrick Shields
In case it helps anyone pondering this, I have copied the index.thtml and view.thtml to the app/views/pages/ folder, and CakePHP CAN access the pages now at mysite.com/pages/index (or /view) however obviously this won't load the controller, etc... Any ideas on why the two pages won't load in the

New to Cake, Missing View Errors (?)

2006-12-30 Thread Derrick Shields
Greetings, I'm trying to follow along with the blog tutorial, but I keep getting "Missing View" errors when trying to look at the index.thtml and view.thml: You are seeing this error because the view for PostsController::index() could not be found. Fatal: Confirm you have c