I got this error in my watchdog, not sure where it comes from, but I suspect it's spawned from the cron job:

Table 'hostmaster.hosting_package_instances' doesn't exist query: DELETE FROM hosting_package_instances WHERE rid = 6 in /var/hostmaster/DRUPAL-5-7/includes/database.mysql.inc on line 172.

Indeed, the table is not defined anywhere. I commented out the lines for now:

diff -r1.3 hosting_package.inc
29c29
<   db_query("DELETE FROM {hosting_package_instances} WHERE rid = %d", $nid);
---
>   #db_query("DELETE FROM {hosting_package_instances} WHERE rid = %d", $nid);
33,34c33,34
<   $iid = db_next_id("{hosting_package_instance}_iid");
<   db_query("INSERT INTO {hosting_package_instances} (iid, release_id, rid, path) VALUES (%d, %d, %d, '%s')", $iid, $nid, $rid, $path);
---
>   #$iid = db_next_id("{hosting_package_instance}_iid");
>   #db_query("INSERT INTO {hosting_package_instances} (iid, release_id, rid, path) VALUES (%d, %d, %d, '%s')", $iid, $nid, $rid, $path);

This will need more work, obviously...

Comments

anarcat’s picture

Status: Needs work » Active

I actually committed that crappy patch, it's better than having the CVS just crashing for now...

adrian’s picture

Status: Active » Fixed

it's there.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.