Hello Simon,
In my experience the indexing process can take quite a while, although half an hour certainly sounds excessive.
To finish your partially-completed upgrade, you'll have to do two things:
- Update the versions table
- Complete the indexing
To update the versions table, run this in MySQL (assuming you're now using 2.0.2-1):
- Code: Select all
update versions set current=0;
insert into versions(major,minor,revision,build,date_installed,current) values(2,0,2,1,now(),1);
You can complete indexing using the tools/rebuildSearchIndex.php script from the command line; my suggestion is that you turn on MySQL logging and check the log file to see if anything meaningful is going on or if there is, in fact, some sort of loop.
Regards,
Alec