You are here:  » automation tool


automation tool

Submitted by rolli1 on Mon, 2014-12-08 16:31 in

Hi David,
I deleted an older Version of PT and installed the newest one. Everything seems to be ok after Installation except I am not able to save a new Automation Job. When I entered all neccessary datas and click on "save", nothing happens but the program Returns to:

Current Jobs

There are no jobs to display

I tried with linkshare and affiliatre window both were not saved.

Regards

Roland

Submitted by support on Mon, 2014-12-08 16:46

Hello Roland,

A new field `directory` was added to the Automation Tool when voucher code feed support was added, so it sounds like whilst you have installed the latest version of Price Tapestry the database may not have been updated since the tables already exist - although any new tables would still have been added when running setup.php?installDB=1.

To add the new field, if you create a dbmod.php script as follows;

<?php
  
require("includes/common.php");
  
$sql "ALTER TABLE `".$config_databaseTablePrefix."jobs`
            ADD `directory` VARCHAR(255) NOT NULL"
;
  
database_queryModify($sql,$result);
  print 
"Done.";
?>

...run once from the top level of your Price Tapestry installation, and then you should be to create new jobs as expected.

Hope this helps!

Cheers,
David.
--
PriceTapestry.com