OK, it’s all installed and running, but when I try to log in it just goes back to the log in screen, no errors, no warnings, nothing.
I know I’m missing something very basic here.
Any ideas?
Thanks in advance,
Bobby
--- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.786 / Virus Database: 532 - Release Date: 10/29/2004
Try and run mysqld with query logging (eg: mysqld -l/var/log/mysqld.queries) and see what serweb is looking for in the db. After that, try and make it happy by filling in what it is looking for. This worked for me :). Probably you don't have some privileges, but it is hard to tell without some logs...
Dragos
Bobby Lloyd wrote:
OK, it’s all installed and running, but when I try to log in it just goes back to the log in screen, no errors, no warnings, nothing.
I know I’m missing something very basic here.
Any ideas?
Thanks in advance,
Bobby
Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.786 / Virus Database: 532 - Release Date: 10/29/2004
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
http://lists.iptel.org/pipermail/serusers/2003-September/002495.html
I think there are atleast 10 - 15 ppl that has had the same problem, and reported it on the mailiglist :-) Google is your friend :D
google search like this.. resulted in that url : serweb +login +screen +problem +iptel
-Atle
* Dragos Vingarzan vingarzan@fokus.fraunhofer.de [041104 23:16]:
Try and run mysqld with query logging (eg: mysqld -l/var/log/mysqld.queries) and see what serweb is looking for in the db. After that, try and make it happy by filling in what it is looking for. This worked for me :). Probably you don't have some privileges, but it is hard to tell without some logs...
Dragos
Bobby Lloyd wrote:
OK, it?s all installed and running, but when I try to log in it just goes back to the log in screen, no errors, no warnings, nothing.
I know I?m missing something very basic here.
Any ideas?
Thanks in advance,
Bobby
Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.786 / Virus Database: 532 - Release Date: 10/29/2004
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
--
Dragos Vingarzan FOKUS/MOBIS Kaiserin-Augusta-Allee 31 10589 Berlin Germany
Phone +49 (0)30 - 3463 - 7242 Mobile +49 (0)162 - 153 - 0 - 154
eMail vingarzan@fokus.fraunhofer.de Web www.fokus.fraunhofer.de Computers are not intelligent. They only think they are.
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Hi,
I'd like to do the above, before I forward on such urls to the PSTN gateway.
Is it possible? When I read the ser docs I see examples on taking the URL apart into sections, or for forwarding, but I don't see how substitutiins can be done.
Thanks in advance,
Sean
if (uri=~"sip:+") { strip(1); prefix("00"); }
bogdan
Sean Boran wrote:
Hi,
I'd like to do the above, before I forward on such urls to the PSTN gateway.
Is it possible? When I read the ser docs I see examples on taking the URL apart into sections, or for forwarding, but I don't see how substitutiins can be done.
Thanks in advance,
Sean
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
correct. haste payback ;-) bogdan
Alexander Mayrhofer wrote:
On (05.11.04 11:51), Bogdan-Andrei IANCU wrote:
if (uri=~"sip:+") {
You really want to escape the + sign in the regex (the line above matches anything).
if (uri=~"sip:+") {
cheers
axelm
no, strip and prefix applies only to username part of RURI.
bogdan
Sean Boran wrote:
if (uri=~"sip:+") { strip(1); prefix("00"); }
Will this not cause the "s" in "sip" to be replaces with 00?
Thanks very much for the quick help!
Sean
Perhaps a final Question on this topic?
How can I strip unwanted characters from the URL, e.g. spaces, "(" and the like. I seen the refernce to subst_uri and its "sed" like syntax.
But presumably I can't do something like:
subst_uri('/[(\ )]//i')
I'd like to help user who paste tel numbers fro their outlook contas into a sip phone, to that I receive urls like:
sip:(031) 2616254@myserver.com
and rewrite to sip:0312616254@myserver.com
Thanks,
Sean
-----Original Message----- From: Bogdan-Andrei IANCU [mailto:iancu@fokus.fraunhofer.de] Sent: Freitag, 5. November 2004 12:50 To: Sean Boran Cc: serusers@lists.iptel.org Subject: Re: [Serusers] Rewriting a "+" to 00 in a sip URL
no, strip and prefix applies only to username part of RURI.
bogdan
Sean Boran wrote:
if (uri=~"sip:+") { strip(1); prefix("00"); }
Will this not cause the "s" in "sip" to be replaces with 00?
Thanks very much for the quick help!
Sean
first of all, spaces and tabs are not allowed into SIP URIs. second, of cource, you can use subst_uri for this purpose.
bogdan
Sean Boran wrote:
Perhaps a final Question on this topic?
How can I strip unwanted characters from the URL, e.g. spaces, "(" and the like. I seen the refernce to subst_uri and its "sed" like syntax.
But presumably I can't do something like:
subst_uri('/[(\ )]//i')
I'd like to help user who paste tel numbers fro their outlook contas into a sip phone, to that I receive urls like:
sip:(031) 2616254@myserver.com
and rewrite to sip:0312616254@myserver.com
Thanks,
Sean
-----Original Message----- From: Bogdan-Andrei IANCU [mailto:iancu@fokus.fraunhofer.de] Sent: Freitag, 5. November 2004 12:50 To: Sean Boran Cc: serusers@lists.iptel.org Subject: Re: [Serusers] Rewriting a "+" to 00 in a sip URL
no, strip and prefix applies only to username part of RURI.
bogdan
Sean Boran wrote:
if (uri=~"sip:+") { strip(1); prefix("00"); }
Will this not cause the "s" in "sip" to be replaces with 00?
Thanks very much for the quick help!
Sean
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Hi,
I tried to rewrite URLs containing brackets "()", to remove them before passing the URL further on to PSTN.
I was approaching this thinking that subst_uri works like "sed", but perhaps I've misunderstood?
if ( uri =~ "sip:.*[()-]" ) { subst_uri('/(//i'); #subst_uri('/[()-]//i'); }
Thanks in advance,
Sean
Hi,
I am using only one SER server for all the SIP phones to register and not using any PSTN side calls. Making normal SIP to SIP calls. (version 0.8.14 for linux)
How to dynamically identify whether the caller or the called party disconnected? If it is called party, can we re-establish the call again by sending re INVITE message or something like that. can we maintain the same RTP port?
Many thanks.
Regards, Suvendu.
________________________________________________________________________ Yahoo! India Matrimony: Find your life partner online Go to: http://yahoo.shaadi.com/india-matrimony
use strip() and prefix() functions (applicable for request uri) if it is at the beginning of the uri. E.g.,
strip(1); prefix("00");
Otherwise you can use subst_uri() from textops module.
Daniel
On 11/5/2004 11:48 AM, Sean Boran wrote:
Hi,
I'd like to do the above, before I forward on such urls to the PSTN gateway.
Is it possible? When I read the ser docs I see examples on taking the URL apart into sections, or for forwarding, but I don't see how substitutiins can be done.
Thanks in advance,
Sean
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers