if u have started mysql with logging, goto the /var/log directory and see where the log file is, or
ps -aux |grep mysql should show u th path also.
then tail -f logfile
and start serweb nd login, it should show you the query it is sending
iqbal
Llanos Serna García-Conde wrote:
Hi all, I can see the Serweb's login screen, but I can't log in with any of the usernames and passwords that I have in my Mysql subscriber table. Is it possible that serweb is somehow not working together with my mysql tables? I mean, not reading anything from them? Do you know how can I find that out? In there any file where the admin's username and password is stored? Please help!! Thank you in advance, Llanos
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
/usr/local/mysql/libexec/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/var --user=mysql --pid-file=/usr/local/mysql/var/peach.isp.net.pid --skip-locking --port=3306 --socket=/tmp/mysql.sock --log=/var/log/mysqld.log
thats how I start mine, for the logging u need to add just the --log=/var/log/mysqld.log at the end, so whatever you use to start it, make sure that this is added
Iqbal
Llanos Serna García-Conde wrote:
I think I didn't start mysql with logging because I can't find any logfile. Can I restart it using logging? How? Thanks!!
if u have started mysql with logging, goto the /var/log directory and see where the log file is, or
ps -aux |grep mysql should show u th path also.
then tail -f logfile
and start serweb nd login, it should show you the query it is sending
iqbal
Llanos Serna García-Conde wrote:
Hi all, I can see the Serweb's login screen, but I can't log in with any of the usernames and passwords that I have in my Mysql subscriber table. Is it possible that serweb is somehow not working together with my mysql tables? I mean, not reading anything from them? Do you know how can I find that out? In there any file where the admin's username and password is stored? Please help!! Thank you in advance, Llanos
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
.
Make sure that useing correct domain. Domain is obtained from http request by default and may by changed by config option $cofnig->domain. Domain must be same as in column domain in subscriber table.
Karel
Llanos Serna García-Conde napsal(a):
Hi all, I can see the Serweb's login screen, but I can't log in with any of the usernames and passwords that I have in my Mysql subscriber table. Is it possible that serweb is somehow not working together with my mysql tables? I mean, not reading anything from them? Do you know how can I find that out? In there any file where the admin's username and password is stored? Please help!! Thank you in advance, Llanos
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
I did this to make life easier for myself
$temp_domain = ereg_replace( "(www.|register.|admin.|login.|sip.)?(.*)", "\2", $_SERVER['SERVER_NAME']);
$config->domain = sip.".$temp_domain";
since all my domains were sip.domain.com in the DB, but the URL's that they were being called from were different
Iqbal
Karel Kozlik wrote:
Make sure that useing correct domain. Domain is obtained from http request by default and may by changed by config option $cofnig->domain. Domain must be same as in column domain in subscriber table.
Karel
Llanos Serna García-Conde napsal(a):
Hi all, I can see the Serweb's login screen, but I can't log in with any of the usernames and passwords that I have in my Mysql subscriber table. Is it possible that serweb is somehow not working together with my mysql tables? I mean, not reading anything from them? Do you know how can I find that out? In there any file where the admin's username and password is stored? Please help!! Thank you in advance, Llanos
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
.