meetme problem DB Error: connect failed

argeorge
Posts: 1
Member Since:
2007-06-16

Hello there seems to me a bug in meetme
I changed mysql root password(passw0rd)

And the /etc/asterisk/cbmysql.conf

But I get the error in the portal: DB Error: connect failed

If I use yum remove web-meetme

And yum install web-meetme

It cant be installed properly because it uses the default password

So I change the password back to passw0rd

And installation is ok

But after if I change the mysql root password and the cbmysql it outputs the same error

DB Error: connect failed



allanlee
Posts: 6
Member Since:
2008-03-03
you also need to change the

you also need to change the password in the

/var/www/html/web-meetme/lib/database.php

-Allan-



sheepsnot
Posts: 16
Member Since:
2008-06-04
resolved

Thank you allanlee.



yx85107453
Posts: 6
Member Since:
2008-12-11
Thanks

Thanks , I have same problem !



kinglyr
Posts: 28
Member Since:
2007-05-06
TIPS TO FIND WHAT IS WRONG!

There are some Web-Meetme errors, that i can confirm that all EXIST on TrixBox v2.6.2.1 (STABLE)

There is a typo in one of the .php files for Web Meetme. Go to the Linux CLI and type this in:
nano -w /var/www/html/web-meetme/user_add_sqldb.php
Press CTRL+W to search and type in 'userPassr' and press Enter. If you get taken to a result, change 'userPassr' to 'userPass' (removing the 'r' on the end). Also there is another error in Line 93 comment out $userPass = "password='$userPass'"; and insert instead $userPass = "$userPass";

ALSO A USEFUL TIP:
If you did something wrong and you have been locked out from Web-Meetme then do the following to see the meetme users and change their password and admin priviledges:
mysql -u root -p (enter your SQL root password, default is: passw0rd)
show databases;
use meetme;
show tables;
show columns from user;
select * from user;
select * from user where password is null;
update user set password=PASSWORD("newpass") where email='user_email_you_want_change_pass';

I hope i helped!

--

BEng (HONS) Electronic Engineering
MBA, MSc in Mobile and Satellite Comms
Node Admin into Athens Wireless Metropolitan Network (www.awmn.net)



jehuerga
Posts: 8
Member Since:
2007-04-06
Works!.

Thank you so much for your help Allanlee. Now my Meetme works great.



Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.