On Sat, 2010-11-27 at 23:59 +0000, www-data wrote:
> 10:34:47 <da> Xav are u around ? Got a question. Which branch should I
> merge to test the fixes, only Vlad's or also trunk ?

Right now it's better to merge Vlad's, since he merged all the changes
from trunk in his repository and is adding bugfixes there.

> 18:48:56 <vlad> can you try to do a make upgrade in the main directory
> of hackit?
> 18:49:32 <da> ok
> 18:50:56 <da> I've got : ERROR 1050 (42S01) at line 10: Table
> 'versioning' already exists 

The likely reason for this error is because you gave 'hackit' as the
name of the test database instead of 'hackit_test' - so the script is
applying the changes twice to 'hackit', instead of once to 'hackit' and
once to 'hackit_test'.

To solve this:

1) Edit config/config_db.php and change NAME_DB_TEST:
define('NAME_DB_TEST','hackit_test');

2) drop the hackit and hackit_test databases and reload the correct
schemas:

$ echo "drop database hackit; create database hackit; drop database
hackit_test; create database hackit_test;" | mysql
$ mysql hackit < sql/db_hackit.sql
$ mysql hackit_test < sql/db_hackit_test.sql

Then you should be fine : )

Xavier.

_______________________________________________
Farsides mailing list - [email protected]

Wiki:  http://farsides.com/
List:  http://farsides.com/ml/
Forum: http://farsides.com/forum/
Ideas: http://farsides.com/ideas/
Chat:  http://farsides.com/chat/

Reply via email to