hi, I installed the phpopenchat, then I registered a name. But I don' t know how I can be a OPERATOR to manager my chat room. thx!!!
When you first install the chat, it tells you what the operator password is. I think that's the only time you can see it.
If you go into mysql you can retrieve (and change) it. You will need shell access to do this.
To run mysql, run something like:
/usr/local/psa/mysql/bin/mysql --user=user --pass=password databasename
That should connect you to your database. My database name was the same as my username.
Then from the mysql> prompt:
select password from poc_user_account where user="operator";
You can get all passwords with:
select * from poc_user_account;
Log in to post a comment.
hi, I installed the phpopenchat, then I registered a name. But I don' t know how I can be a OPERATOR to manager my chat room.
thx!!!
When you first install the chat, it tells you what the operator password is. I think that's the only time you can see it.
If you go into mysql you can retrieve (and change) it. You will need shell access to do this.
To run mysql, run something like:
/usr/local/psa/mysql/bin/mysql --user=user --pass=password databasename
That should connect you to your database. My database name was the same as my username.
Then from the mysql> prompt:
select password from poc_user_account where user="operator";
You can get all passwords with:
select * from poc_user_account;