3
Hi, for first you need to play with your backup sql from pre RC.
1. Install MySQL at home, run it. Save unpacked SQL at some dir. Look at SQL file for
"CREATE DATABASE xxxx"
string. If there no string at beginning like that, insert at begining:
"CREATE DATABASE chip_test;USE chip_test;"
Run MySQL:
mysql -u root
or
mysql -u root -p
execute
>source dir/unpacked_sql.txt
ex.:
>source /home/chip/mysql.txt
If u don't get any error - that is cool. If u get them, try to figure what errors u have. Post some of them here. May be that SQL file isn't so ill.
Check that you don't broke SQL text file when edit it in some buggy editor which will insert some linebreaks or will wrap words. May be that is problem.
If old SQL still is bad... You need to figure which tables from new SQL backup (after RC install) do u need. Eg. you can try to mess tables needed to XOOPS 2.0.13 to work (from clear XOOPS 2.0.13 install) with tables which is needed by your modules/data. Eg. you need to play with 2 SQL:
1. with new SQL backup from messed site - cut from them all tables except XOOPS related.
2. with SQL backup from clear XOOPS 2.0.13 install - add to them tables from step 1.
That is some ways that may help. Try it.
Good luck!