Post
Topic
Board Digital goods
Re: CoinJack 1.6 - start your own blackjack casino!
by
tvle83
on 19/12/2014, 17:50:39 UTC
I found the problem and fixed it.

There is an error in the sql syntax.

To fix open /www/install/coinjack.sql

go to line 163 and 164 and put a comma at the end of each line.

Code:
163:  `bj_pays` int(1) NOT NULL DEFAULT '0'
164:  `tie_dealerwon` int(1) NOT NULL DEFAULT '1'
165:  `insurance` int(1) NOT NULL DEFAULT '1'

Code:
163:  `bj_pays` int(1) NOT NULL DEFAULT '0',
164:  `tie_dealerwon` int(1) NOT NULL DEFAULT '1',
165:  `insurance` int(1) NOT NULL DEFAULT '1'