Quote:
Originally Posted by Marky
*Tut* You have to read the installation files...
It clearly states you must go to your config file and find:
Code:
// Now to check if the bottle is open!
// 0 = Closed 1 = Open
$bottle_open='0'
Edit accordingly 
|
hmmm... that gave me a parse error.
Parse error: parse error in
https://vborg.vbsupport.ru/showpost....4&postcount=13 on line 3
Fixed it with this:
PHP Code:
$bottle_open = '0';
Gotcha