Doh,

actually changing the file /app/plugins/paypal_ipn/config/routes.php
worked

***
/* Paypal IPN plugin */
Router::connect('/paypal_ipn/process', array('plugin' => 'paypal_ipn',
'controller' => 'instant_payment_notifications', 'action' =>
'process'));
/* Optional Route, but nice for administration */
Router::connect('/paypal_ipn', array('admin' => 'true', 'plugin' =>
'paypal_ipn', 'controller' => 'instant_payment_notifications',
'action' => 'index'));  // <= NEW
Router::connect('/paypal_ipn/:action/*', array('admin' => 'true',
'plugin' => 'paypal_ipn', 'controller' =>
'instant_payment_notifications', 'action' => 'index'));
/* End Paypal IPN plugin */
***



On 11 Dic, 18:34, denisr <[email protected]> wrote:
> So, I have cakephp 2.0.3 and the CakePHP Paypal IPN Plugin for 2.0.
> The plugin is originally made 
> byhttps://github.com/webtechnick/CakePHP-Paypal-IPN-Plugin,
> I found a fork for 2.0 here 
> ->https://github.com/tenutso/CakePHP-2.0-Paypal-IPN-Plugin
>
> So, as the instruction said, I uploaded the plugin under /app/plugins
> with a folder named paypal_ipn (all lowercase).
> I added the row provided in the boostrap.php file
> I loaded the sql data in the database (without bake, I used
> phpmyadmin)
>
> So... I go to hostname/paypal_ipn/ to start the configuration, and I
> get this error:
>
> *****
> Missing Controller
> Error: PaypalIpn.PaypalIpnController could not be found.
>
> Error: Create the class PaypalIpnController below in file: /home/
> mhd-01/www.hostname.it/htdocs/app/Plugin/paypal_ipn/Controller/
> PaypalIpnController.php
> *****
>
> So, I guess the plugin is not loaded. But what should I do to load it
> correctly? (I tryed a different pluing, authake, and It worked without
> any problems)

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to