https//:localhost:8444/ not opening

Max

Administrator
Staff member
Well, we can see the code. But how we should test it? Please provide a HTTPS link to a test page where the exception mentioned here is reproducing.
 

SAGARVG

Member
Well, we can see the code. But how we should test it? Please provide a HTTPS link to a test page where the exception mentioned here is reproducing.
https i have to check to how to convert but u can test there its self in widget
call sip user name enter 1004 and call
1623991737702.png
 

Max

Administrator
Staff member
https i have to check to how to convert but u can test there its self in widget
WEbRTC will not work without HTTPS, so SIP call may be establihed, but media traffic between browser and server will not flow. Consider to use HTTPS
 

Max

Administrator
Staff member
Please test your code as standalone HTML+JS file, not in dashboard. In this case, you'll see if something wrong with the code in Chrome Dev Tools Source tab. If the code works correctly without the dashboard, it'is definitely dashboard issue, so it should be fixed by dashboard developer.
 

SAGARVG

Member
Please test your code as standalone HTML+JS file, not in dashboard. In this case, you'll see if something wrong with the code in Chrome Dev Tools Source tab. If the code works correctly without the dashboard, it'is definitely dashboard issue, so it should be fixed by dashboard developer.
form has been updated please check, in the dashboard test...
 

Max

Administrator
Staff member
The problem is in your dashboard/widget editor as we supposed above.
You've defined the button invoking call() function on click:
1624257864829.png

But when you're clicking the button in widget editor
1624257961408.png

your code does not receive this event because widget editor captures it. Then, editors code tries to invoke call() function, and cannot find it and throws the exception
1624258104738.png

Exception references to the first line of widget editors HTML page
1624258227558.png

There's no function to invoke here.
So please contact widget editors developers to resolve the issue.
 

SAGARVG

Member
Good Day...

I will check with latest websdk


we are not getting ringing sound here while i receive call ...what need to be done for that

1631077902710.png
 

Max

Administrator
Staff member
we are not getting ringing sound here while i receive call ...what need to be done for that
You should add HTML5 audio element on the page with a desired audio file, and start to play it when CALL_STATUS.RING is received. then stop playing it when CALL_STATUS.ESTABLISHED is received (or other status different from CALL_STATUS.RING).
 

SAGARVG

Member
You should add HTML5 audio element on the page with a desired audio file, and start to play it when CALL_STATUS.RING is received. then stop playing it when CALL_STATUS.ESTABLISHED is received (or other status different from CALL_STATUS.RING).
Thank you for your REPLY,

Whether we can install Flash phoner software in Linux Centos 7.9.2009 Virtual Machine? and Software IPPBX is already installed on the same virtual machine...so the functionality will support....
 
Last edited:

Max

Administrator
Staff member
Whether we can install Flash phoner software in Linux Centos 7.9.2009 Virtual Machine?
WCS should work on all Centos 7 branches, we've also successfully tested it on Centos 8 and Centos Stream
 

Max

Administrator
Staff member
Is there simple way or steps to install the WCS build 5.2.926 on Centos 7 machine with TLS and soft IPPBX configuration.
1. Install JDK 14
2. Download installation archive
Code:
wget https://flashphoner.com/downloads/builds/WCS/5.2/FlashphonerWebCallServer-5.2.926.tar.gz
3. Unpack archive
Code:
tar -xzf FlashphonerWebCallServer-5.2.926.tar.gz
4. Install WCS
Code:
cd FlashphonerWebCallServer-5.2.926
sudo ./install.sh
Then, configure WCS as needed in flashphoner.properties file.
 

SAGARVG

Member
1. Install JDK 14
2. Download installation archive
Code:
wget https://flashphoner.com/downloads/builds/WCS/5.2/FlashphonerWebCallServer-5.2.926.tar.gz
3. Unpack archive
Code:
tar -xzf FlashphonerWebCallServer-5.2.926.tar.gz
4. Install WCS
Code:
cd FlashphonerWebCallServer-5.2.926
sudo ./install.sh
Then, configure WCS as needed in flashphoner.properties file.

Hello ,

How can we make this video display larger size....
1635230986333.png
 

Max

Administrator
Staff member
Good day.
How can we make this video display larger size....
You should set div elements sizes through CSS as needed, for example:
Code:
/* Remote Video*/
.fp-remoteVideo {
    border: 1px double black;
    position: absolute;
    background: #c0c0c0;
    width: 320px;
    height: 240px;
    text-align: center;
    margin: 0 auto 0 auto;
}

/* Local Video*/
.fp-localVideo {
    border: solid 1px;
    background-color: black;
    position: absolute;
    width: 80px;
    height: 60px
}
 

SAGARVG

Member
Good day.

You should set div elements sizes through CSS as needed, for example:
Code:
/* Remote Video*/
.fp-remoteVideo {
    border: 1px double black;
    position: absolute;
    background: #c0c0c0;
    width: 320px;
    height: 240px;
    text-align: center;
    margin: 0 auto 0 auto;
}

/* Local Video*/
.fp-localVideo {
    border: solid 1px;
    background-color: black;
    position: absolute;
    width: 80px;
    height: 60px
}
Getting only established not able to register....form has been updated with SIP accounts, SSH access




1635270285716.png
 

Max

Administrator
Staff member
Seems like your SIP PBX is unavailable from your server:
1635303220003.png

TCP connection cannot be established to SIP PBX IP address. Telnel test also shows no response:
1635303400659.png

From our test servers, SIP PBX IP seems reachable:
1635303615022.png

Please check firewall/NAT/router settings.
 

SAGARVG

Member
Seems like your SIP PBX is unavailable from your server:
View attachment 2906
TCP connection cannot be established to SIP PBX IP address. Telnel test also shows no response:
View attachment 2907
From our test servers, SIP PBX IP seems reachable:
View attachment 2908
Please check firewall/NAT/router settings.
Thank your your reply,

Whether we can use flashphoner web page app in single page....

I am facing one issue.....

I have two SIP web accounts ,which i call on the single web page its not working, if i open in different pages its working fine....

does this limitation>?
 
Top