I followed the instructions to install PayPal IPN:

1) Copy plugin into your /app/plugins/paypal_ipn directory
2) Run the /plugins/paypal_ipn/paypal_ipn.sql in your database.
3) Add the following into your /app/config/routes.php file (optional):
Controller Class:
<?php 
/* Paypal IPN plugin */
Router::connect('/paypal_ipn/process', array('plugin' => 'paypal_ipn', 
'controller' => 'instant_payment_notifications', 'action' => 'process'));
... etc
 
I added the line to core.php:
Configure::write('Routing.prefixes', array('admin'));
I added the line to boostrap.php:
CakePlugin::load('PaypalIpn', array('bootstrap' => 
array('paypal_ipn_config'), 'routes' => true));
When I go to http://localhost/testapp/paypal_ipn I get a "page not found" 
message.
How can I fix this?
 
Thanks.

 

-- 
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 group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.


Reply via email to