Well then...after finally getting bebot running, i thought i'd just compile all the info that may help someone who is also trying to start using bebot.
First off, make sure you have everything outlined by craized
herenext up, you're going to want to setup MySQL. Best and fastest way of doing this is, of course, installing it, yawn, ok we're good there...great. So now you're staring at a command prompt after having entered your password...start by typing (curtusy of craized..again...)
When you're at the command prompt, whish should say something like mysql>
type
create database bebot;
(or whatever the database name you want to use is)
next, type
use bebot;
after that, find out what the path to the items.sql file is, and then type
source PATH TO items.sql;
It should update rows of data for a while. After its done, close the command prompt.
ok so now we're done with that...open up the
admin control panel and make a new user...lets say bebot and give it admin privlages over the databse you've specified, and give him a stupid password or something, lets say...banana
then open the php.ini file in the bot directory, and add the line
extention=php_sockets.dll after the one line thats in there.
Fill in at this point the conf files as outlined
herethe mysql conf file should look something like
<?
$dbase = "bebot";
$user = "Bebot";
$pass = "banana";
$server = "localhost";
?>
if you've followed this exactly so far. the $server would change if you werent running the mysql on the same machine as the bot, at which point you would just put the comps ip.
ok, wewt we get to start it up. if you get the error message "'php4' is not recognized as an internal or external command,operable program or batch file" then in start.php in your bebot folder, edit the line:
$php_bin = "php4";
to:
$php_bin = "php";
now finally, you should be ready to roll...i think
this might be changed as i find i did something wrong :roll: