Everything was going well until update.php finished... It listed many many Failed Queries. Following are the first few sections... I can access my DB with PHPMyAdmin and when I attempted to run the failed queries manually through the PHPMyAdmin interface, I received errors like:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '{blocks} DROP path' at line 1
I feel weak and afraid. Help.
+++++++++++++
Update #110
* DROP TABLE {search_index}
* CREATE TABLE {search_index} ( word varchar(50) NOT NULL default '', sid int unsigned NOT NULL default '0', type varchar(16) default NULL, fromsid int unsigned NOT NULL default '0', fromtype varchar(16) default NULL, score int unsigned default NULL, KEY sid (sid), KEY fromsid (fromsid), KEY word (word) )
* Failed: CREATE TABLE {search_total} ( word varchar(50) NOT NULL default '', count int unsigned default NULL, PRIMARY KEY word (word) )
* Failed: ALTER TABLE {blocks} DROP path
* Failed: ALTER TABLE {blocks} ADD visibility tinyint NOT NULL
* Failed: ALTER TABLE {blocks} ADD pages text NOT NULL
* DELETE FROM {variable} WHERE name = 'node_cron_last'
* UPDATE {blocks} SET status = 1, custom = 2 WHERE status = 0 AND custom = 1
Update #111