Re: the plugins dont work at all

2010-04-17 Thread Miles J
I stand corrected. However, it took me a while to find the tip that the same name for controller and plugin can be used for an index. Dont know why thats not on the plugin controller page. On Apr 17, 3:13 am, jacmoe wrote: > Yes, I know that. :) > That's why I was wondering what was going on. >

Re: the plugins dont work at all

2010-04-17 Thread jacmoe
Yes, I know that. :) That's why I was wondering what was going on. But, to the Original Poster : http://book.cakephp.org/view/119/Plugin-Tips On Apr 17, 10:00 am, AD7six wrote: > On Apr 17, 1:22 am, jacmoe wrote: > > > If you read the book, it is indeed root_url/plugin_name/plugin_action, > > s

Re: the plugins dont work at all

2010-04-17 Thread AD7six
On Apr 17, 1:22 am, jacmoe wrote: > If you read the book, it is indeed root_url/plugin_name/plugin_action, > so check your sources before you're telling people that they are > telling the wrong thing. :) > > http://book.cakephp.org/view/1113/Plugin-Controllers You'll find I'm not wrong very oft

Re: the plugins dont work at all

2010-04-17 Thread AD7six
On Apr 17, 4:20 am, Miles J wrote: > Neither of you are correct, or are referring to the wrong thing. > > @jacmoe - Its /root_url/plugin_name/plugin_controller/plugin_action/ > not /root_url/plugin_name/plugin_action/. > > And I quote the book: "Once a plugin has been installed in /app/ > plugin

Re: the plugins dont work at all

2010-04-16 Thread islam4hak
thanks every one it's just work great for me at this way appName/pluginName/Controller/action i was get it wrong on the book thanks. 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 subscri

Re: the plugins dont work at all

2010-04-16 Thread Graham Weldon
I think you'll find in CakePHP 1.2, a controller name that matches the plugin name will route fine as: /root/:plugin/:action as long as :controller is the same string as :plugin Cheers, Graham Weldon e. gra...@grahamweldon.com p. +61 407 017 293 w. http://grahamweldon.com On 17/04/2010, at 1

Re: the plugins dont work at all

2010-04-16 Thread Miles J
Neither of you are correct, or are referring to the wrong thing. @jacmoe - Its /root_url/plugin_name/plugin_controller/plugin_action/ not /root_url/plugin_name/plugin_action/. And I quote the book: "Once a plugin has been installed in /app/ plugins, you can access it at the URL /pluginname/contro

Re: the plugins dont work at all

2010-04-16 Thread jacmoe
If you read the book, it is indeed root_url/plugin_name/plugin_action, so check your sources before you're telling people that they are telling the wrong thing. :) http://book.cakephp.org/view/1113/Plugin-Controllers On Apr 16, 9:47 pm, AD7six wrote: > On Apr 16, 9:39 pm, Miles J wrote: > > > Y

Re: the plugins dont work at all

2010-04-16 Thread AD7six
On Apr 16, 9:39 pm, Miles J wrote: > You are doing it wrong, the URLs would be like so: > > domain.com/controller/action/ > domain.com/plugin/controller/action/ > > You cant go to domain.com/plugin/ and have it work without setting up > routes. Since when. I'd suggest checking the book and/or t

Re: the plugins dont work at all

2010-04-16 Thread Miles J
You are doing it wrong, the URLs would be like so: domain.com/controller/action/ domain.com/plugin/controller/action/ You cant go to domain.com/plugin/ and have it work without setting up routes. On Apr 16, 11:18 am, Martin Westin wrote: > Hi, > Plugins do work. I have whole apps build with a l

Re: the plugins dont work at all

2010-04-16 Thread Martin Westin
Hi, Plugins do work. I have whole apps build with a limited core and numerous plugins (22 of them in one case). I can think of a few details to double-check. I don't think you should have plugins named in camelCase. Try naming the folder and the urls you try pizza_order instead. (The plugin in th

the plugins dont work at all

2010-04-16 Thread islam4hak
hi why i cant accses any plugin i create ? i make the manual tutorial to create the pizzOrder plugin but i cant access to it /pluginname/controllername/action so i bake another plugin but i cant access it to app/plugin/poll/ i try http://localhost/appname/poll/ it dont work Error: PollContr