I have 'Paypal Standard' payment set up with our paypal account.
I followed the Opencart guide to adjusting the settings so all should be Ok from that respect:
http://www.opencart.com/index.php?route ... h=32_35_60
When I place an order on the site and pay with Paypal, everything seems to work but I can't see any information about the transaction stored with the order when I view it under sales>orders in admin.
I found a thread on here where Qphoria offers the solution quoted below:
http://forum.opencart.com/viewtopic.php ... saction+id
I tried this (using VQmod) but no information is inserted into the order comments, nothing at all.(1.4.x and 1.5.x)
1. EDIT: catalog/controller/payment/pp_standard.php
2. FIND:
Code: Select all
$this->model_checkout_order->update($order_id, $order_status_id);
3. REPLACE WITH:
Code: Select all
$this->model_checkout_order->update($order_id, $order_status_id, print_r($_REQUEST, 1));
That will store everything from paypal's IPN message to your order history log
Thinking it might be a problem with getting the info from Paypal, instead of the $_REQUEST array I simply added some text to the code above. i.e.:
Code: Select all
$this->model_checkout_order->update($order_id, $order_status_id, 'Test Comment Text');
Does anyone have any idea why this might not be working?
I checked the VQmod log and it reports no errors when modifying the pp_standard.php file so it can't be that either.
Thanks in advance!