I was getting SQL errors so I updated the file to remove the extra columns that my database did not have

INSERT INTO orders_status VALUES (88888, 1, 'Moneybookers before process');
INSERT INTO orders_status VALUES (88888, 2, 'Moneybookers before process');
INSERT INTO orders_status VALUES (88888, 3, 'Moneybookers before process');

INSERT INTO orders_status VALUES (88890, 1, 'Moneybookers Processed');
INSERT INTO orders_status VALUES (88890, 2, 'Moneybookers Processed');
INSERT INTO orders_status VALUES (88890, 3, 'Moneybookers Processed');

INSERT INTO orders_status VALUES (88891, 1, 'Moneybookers Scheduled');
INSERT INTO orders_status VALUES (88891, 2, 'Moneybookers Scheduled');
INSERT INTO orders_status VALUES (88891, 3, 'Moneybookers Scheduled');


INSERT INTO orders_status VALUES (88892, 1, 'Moneybookers Pending');
INSERT INTO orders_status VALUES (88892, 2, 'Moneybookers Pending');
INSERT INTO orders_status VALUES (88892, 3, 'Moneybookers Pending';

INSERT INTO orders_status VALUES (88893, 1, 'Moneybookers Cancelled');
INSERT INTO orders_status VALUES (88893, 2, 'Moneybookers Cancelled');
INSERT INTO orders_status VALUES (88893, 3, 'Moneybookers Cancelled',);


I also was noticing that the frame was too wide for my oscommerce final checkout page. "checkout_confirmation"

After trying to figure out what was going on I made the following change.

FROM:

I also was noticing that the frame was too wide for my oscommerce final checkout page. "checkout_confirmation"

After trying to figure out what was going on I made the following change

echo "";
return array('title' => MODULE_PAYMENT_AMONEYBOOKERS_IPN_TEXT_TITLE);

TO:

echo "";
return array('title' => MODULE_PAYMENT_AMONEYBOOKERS_IPN_TEXT_TITLE);

More...