The first error I received upon running update.php was for an undefined method "update_sql". The "similar.install" file referes to this method in 2 places, and I was able to work around this error by replacing it with "db_query".

The next error I received was that there was no such table as drupal.blocks. This I was able to fix by wrapping those 2 SQL queries in the following conditional:

if ( db_table_exists('blocks') ) {
...
}

Comments

jordojuice’s picture

Status: Active » Fixed

Fixed. Thanks

Status: Fixed » Closed (fixed)

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