You are here:  » [Automation] No jobs to display ...


[Automation] No jobs to display ...

Submitted by randza on Sat, 2012-09-01 18:18 in

Hi David,

As usual, I updated my feed via this link http://www.mywebsite.com/pt/scripts/cron.php?password=pwdxxx

The problem is that when I cliked this link, it says "There is no jobs to display". That is, all the feed I enregistered disappeared. Do you kwnow the reason why they disappeared ?

Thank you for your support

Rdz

Submitted by support on Sun, 2012-09-02 13:22

Hello Randza,

That sounds like it may be a transient database issue, or possibly a table crash. Firstly, check your setup.php page

http://www.mywebsite.com/pt/setup.php

If it indicates a connection problem, double check the server, username and password settings in config.php. If setup.php indicates all OK, and products are still showing on your site it is possible that the feeds table has crashed. The following repair.php script will check / fix this, create the file and upload to / browse to at /pt/repair.php:

<?php
  
require("includes/common.php");
  
$sql "REPAIR TABLE `".$config_databaseTablePrefix."feeds`";
  
database_queryModify($sql,$result);
  print 
"Done.";
?>

Hope this helps!

Cheers,
David.
--
PriceTapestry.com

Submitted by randza on Sun, 2012-09-02 17:23

Thank you David,

It works !