|
Welcome,
Guest
|
|
|
I have integrated my website (which uses magento) with pesapal using the plugin. All looks ok until payment where the payment goes through but I get the following error:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'pesapal_transaction_tracking_id' in 'field list' Trace: php 5.1.12 Apache 2.4.4 MAgento 1.7.0.0 #5 C:\wamp\www\magento\app\code\local\Pesapal\Pesapalexpress\controllers\PaymentController.php(33): Varien_Db_Adapter_Pdo_Mysql->query('UPDATE sales_fl...') I am on: Windows 8. Kindly assist. Will appreciate |
|
|
|
I managed to sort out my own problems.
Just manually add field with name pesapal_transaction_tracking_id to table sales_flat_order i.e ADD COLUMN pesapal_transaction_tracking_id VARCHAR(50) NULL |
|
|
|
This will help you:
ALTER TABLE `sales_flat_order` ADD `pesapal_transaction_tracking_id` VARCHAR( 100 ) NOT NULL AFTER `shipping_address_id` ; |
|
|
|