Re: Plugin and missing controller

2011-05-06 Thread Jeremy Burns | Class Outfit
I changed them to bools and they still work. You are right that that is the convention - I hadn't really observed that the were strings here. Jeremy Burns Class Outfit jeremybu...@classoutfit.com http://www.classoutfit.com On 7 May 2011, at 06:50, Sam Sherlock wrote: > cool no problem. > > I

Re: Plugin and missing controller

2011-05-06 Thread Sam Sherlock
cool no problem. I see you went back to strings for route prefixes - I thought these would be better as bools thats the code in the book at least - or am I missing something? - S On 7 May 2011 05:28, Jeremy Burns | Class Outfit < jeremybu...@classoutfit.com> wrote: > Thanks Sam - you enco

Re: Plugin and missing controller

2011-05-06 Thread Jeremy Burns | Class Outfit
Thanks Sam - you encouraged me to go and play with the routes and here is what I ended up with, and it works: /* Paypal IPN plugin */ Router::connect('/paypal_ipn/process', array('plugin' => 'paypal_ipn', 'controller' => 'instant_payment_notifications', 'action' => 'process')); /* Optional Route

Re: Plugin and missing controller

2011-05-06 Thread Sam Sherlock
Are you still perplexed? I just got the admin to work 1a) add line that is uncommented 1b) first I changed this (removing the red) 2) I did not like the routes - true was a string and this does not find index for me I always have an index catch before the other action catch all (aplogies if my

Re: Plugin and missing controller

2011-05-05 Thread Jeremy Burns | Class Outfit
Any clues? I'm stumped as this should all just work. Jeremy Burns Class Outfit jeremybu...@classoutfit.com (t) +44 (0) 208 123 3822 (m) +44 (0) 7973 481949 Skype: jeremy_burns http://www.classoutfit.com On 4 May 2011, at 13:11, Jeremy Burns | Class Outfit wrote: > Just to make sure that nothing

Re: Plugin and missing controller

2011-05-04 Thread Jeremy Burns | Class Outfit
Just to make sure that nothing else in my application was causing problems, I have installed the plugin in a bare copy of Cake 1.3.8, and it still comes up with the missing controller error. Any clues/guidance/advice? Jeremy Burns Class Outfit jeremybu...@classoutfit.com (t) +44 (0) 208 123 382

Plugin and missing controller

2011-05-03 Thread Jeremy Burns
I have downloaded WebTechNick's PayPal plugin and copied the files into /app/plugins/paypal_ipn (exactly as per the instructions). I have amended /app/config/routes.php to include the routes for the plugin (these are copied straight from the installation instructions). As part of debugging this pro