-
What i can do with config.php?
i replaced the config.php file with the previous version of SomeChess (2.0b3)
can't connect to database
please help
thx.
2009-02-14 00:12:27 UTC by lecaro
-
This may or may not have been fixed in the latest release. Any idea how to recreate the bug?.
2008-01-05 13:36:20 UTC by jonlink
-
Thanks! I'll include the fixes in the next release.
2008-01-05 13:07:24 UTC by jonlink
-
En Passant is supported, though there is a bug with it that is probably messing with your game. I am happy to let you know that I just finished up the first beta of v2.5 and that fixes the bug.
Thanks.
2008-01-04 08:15:04 UTC by jonlink
-
1. e4 e5 2. Nf3 Nc6 3. Bc4 Nf6 4. Ng5 d5 5. exd5 Na5 6. Bb5+ c6 7. dxc6 bxc6 8. Be2 h6 9. Nf3 e4 10. Ne5 Bd6
11. d4 exd3 e.p.
When trying last move, taking d4-pawn en passant
I got the following error:
'Error connecting to database mv-1 '
Does SomeChess support e.p. moves? (En passant)
The usual way some scripts handles this, is storing last pawnmove and the square an eventual en...
2007-12-20 21:40:57 UTC by mattafort
-
Change link to report bugs.
menu.php
Line: 467
Change to:
please report bugs
Regards, mattafort.
2007-12-20 12:20:47 UTC by mattafort
-
I forgot to mention, but it is obvious to chess players.
The game I refer to of course started:
1. e4 e5
2. Nf3 Nf6
3. d4
As can be seen in my other screenshot.
File Added: move_history_bug_2.png.
2007-12-20 11:24:42 UTC by mattafort
-
When 'REVIEW' some previous moves are missing.
I do not know if is because I did an attempt to 'UNDO'.
Anyway the Undo option has been set OFF = 0 all the time.
So no move has been allowed to be undone.
When exporting PGN or settin up REVIEW the position is corrupt.
It is like game started at move number 2.
Note:
when actually playing, the game shows correct position on the board,
it...
2007-12-20 11:10:29 UTC by mattafort
-
I use MySQL 5.
When a new record is insert and field is 'NOT NULL'
mysql REQUIRES a value. Otherwise will be error failure.
This value must either
1. be specified in CREATE TABLE
2. or submitted at INSERT of row
I attach a corrected CREATE TABLE players.
This table is created in install.php
and gives an error when trying to INSERT
'admin' and 'password' etc.
The result is that Some...
2007-12-20 10:54:37 UTC by mattafort
-
Some Chess 2.0 from 2007-05-26
4 changes needed in movesToPGN() function in
'gameFunc.php'
Line 192:
elseif($winner='D'){$result='1/2-1/2';}else{$result='*';}
Should be:
elseif($winner=='D'){$result='1/2-1/2';}else{$result='*';}
Line 203:
[Round ""]
Should be:
[Round "-"]
This is according to PGN Standard.
Line 207:
[Board "'.$gameID.'"]
Should be:
[Board "'.$gameID.'"].
2007-12-20 10:43:26 UTC by mattafort