joecooper:
"You have to know how to upgrade it to show on zen cart v1.5 admin/customers/ menu." Is very vague with no explanation.. I have checked the log and found the error, working on that issue now.
PHP Fatal error: 1364:Field 'configuration_title' doesn't have a default value :: INSERT INTO configuration (configuration_key, configuration_value, configuration_group_id, date_added) VALUES ('MODULE_PAYMENT_WORLDPAY_VERSION', '2.12', '6', now()) ==> (as called by) E:\Websites\Initially London\www\shop\includes\modules\payment\worldpay.php on line 450 <== in E:\Websites\Initially London\www\shop\includes\classes\db\mysql\query_factory.php on line 155
>
> The line from the PHP file:
>
> ```
$db->Execute("INSERT INTO " . TABLE_CONFIGURATION . " (configuration_key, configuration_value, configuration_group_id, date_added) VALUES ('MODULE_PAYMENT_WORLDPAY_VERSION', '".$this->moduleVersion."', '6', '')");
Understandable that the statement was considered vague (not necessarily to all), there is a FAQ about how to upgrade plugins from 1.3.x to 1.5.x which is part of the solution. Sorry, for not doing that leg work myself, but I'm on a cell phone at the moment and sometimes looking for such similar related information isn't so easy in this environment.
As to the error, that's pretty straight forward. The sql line identified does not include an assignment of the configuration_title field. Needs to be added to the first parenthetical listing with a corresponding title in the second at the same relative position... Typical implementation is to place that new field in the same sequence as a default ZC install would have the record within the table structure.