150 comments found.
I am interested and would like to buy this source code, but the comment shows me the source code seems faulty in some cases, and the demo does not work. Please send me the demo link. Thank you.
I’ll try to update demo on this weekend
Hi, Please let me know if it is possible to change frame rate and resolution of the video ? Many thanks …
Hi, yes, you can.
First you need to set frameRate and resolution for Publisher. Open js/opentok.js.You will find publisherProps object at 111 line. Read more here:https://tokbox.com/developer/sdks/js/reference/OT.html#initPublisher
(see frameRate and resolution properties).
Next, you need to set preferredFrameRate and preferredResolution for subscriber. Subscriber configration is at 178 line (subscriberProperties object). Here you can find all options you can pass to subscriber:
https://tokbox.com/developer/sdks/js/reference/Session.html#subscribe
Hope this help you
Regards,
Roman
Many thanks Roman . Great Support !
Hi there,
Your demo doesn’t work. Is there a demo I can test?
ta
Hi. I’ll set up demo for you on this week.
please i would like to buy this but could you integrate for me with another php health solution, and i will pay also for integration
Hi. Sorry, I don’t have a time for freelance.
Pre-sale question
You said “The problem is that opentok is not free so I need to create trial account each time someone requests a demo. “
I need to be independent from OpenTok – If I have my own server, is there a work around? I would like to use your script but use my server. Is there a open source script that I can use on my server along with your script?
Hi. Sorry, unfortunately I don’t have a solution for own server.
Thank you for your quick reply. I am looking for a way cheaper way to make it work – OpenTok can be quickly very expensive and I am trying to avoid that kind of bad surprise. Do you have any suggestion? Thanks again.
Sorry, but no.
I want to purchase this script but when I am going to live preview URL for testing purpose then Connecting with online user then show error code. Please see this URL – http://prntscr.com/jj0s5g and mention me why happened this ? Can you send me any demo access for testing purpose ?
Sorry for late response. My Opentok account has been expired. I renewed it. Please test again.
Video streaming is not loading/showing; https://paradonbooks.com/broadcasting. Can you help? I will provide ftp credential if i need to. Thank you.
Yes, sure. Send me FTP credentials on email.
I’m still waiting for your help. I’ve provided the credential. Can you please attend to this asap. thx
I have install the video-chat here, https://www.paradonbooks.com/broadcasting, but the video and messaging are not showing. Can you update/fix the program from the FTP access i provided you? Is the script outdated or something because I’ve done everything as instructed. Thanks
Hi. Sorry for late response. I was far away from civilization. Send me please FTP creds on email.
In this I have the possibility to arrange the databese table by myself. if there is how to do it. I think if I buy it, I will. for example in the user table am I allowed to change userid demoid userdatabasename to user_name
i need change session table username change user_name and id change user_id. pls help me for file
Hi. I can tell that it’s about 70% of files, because there are a lot of places where code is: $user->username or $user->id and etc. In some places it should be changed in some – no.
Let’s try to broke app – rename “id” to “user_id” and “username” to “user_name” and send me FTP creds. I’ll try to modify files according your changes.
ok i send my ftp and cpanel creds. only change user tabels id change user_id thanks
I did. thank you. now it will be a responsibility. Where are the session controls? for the first time I’m dealing with the yii framework. if we define a session
<? Php // Add data to Session $ _SESSION [“user_name”] = “x”; $ _SESSION [“user_id”] = “y”; ?>
how to auto-login with this. Thank you
This application does not keep up with OPENTOK. When would you update to record session, support Safari, and share screen? 1) Would you be adding these features? 2) If not, can you add these feature as customization for me?
The problem is that opentok is not free so I need to create trial account each time someone requests a demo. Speaking about safary: web chat will be working as soon as apple implements WebRTC support in Safary web browser.
I don’t need a demo right now. Can you add the features mentioned as private gig?
I don’t think I’ll be able to do it in current month.
I love the idea but will it not run off my server? I don’t like the idea of having to pay per minutes used.
Demo not working 
Hi! Can you check demo?
still not working.
Oh I’m very sorry. The preview link was incorrect :/
hi, you site demo is busy : Internal Server Error Client error response [status code] 403 [reason phrase] Forbidden [url] https://api.opentok.com/session/create
Hi. I’ll fix it on Sunday!
Hi Author,
I bought your plugin and i have integrated this plugin with my web application successfully. But i am facing some issues with ios browsers( Like – safari, chrome, opera). These browsers given me an error like – “Your Browser dose not support video streaming”.
I have submitted tickets more than once but your support team didn’t replied me at once. Its so irritating for me. I have already paid for your Extend support to 12 months.
Please give me solutions for how can i run this application in my iphone browsers.
Thanks
Hi! A already answered you by email. Unfortunately this script doesn’t work on iOS devices since they doesn’t support WebRTC technology. This is described on product’s page.
Is there an Admin area and when YES, how can I logIn to?
Hello – Sorry, there is no admin panel.
demo seems does not work
Client error response [status code] 403 [reason phrase] Forbidden [url] https://api.opentok.com/session/create
Hi. Seems my opentok account has been expired. I’ll renew it soon.
I added this plugin to my user-side website that has login form. I will like this plugin to get the current session username.
Whereby, any logged-in member can access chat area without supply another username.
Is this possible?
How can I achieve this if possible?
I mean how a current logged-in member can bypass video login section
I mean how a current logged-in member can bypass video login section
Open root/protected/controllers/VideochatController.php. Next, you need to rewrite logic in actionLogin method.
public function actionLogin() {
if(checkIfUserIsLogged()) {
// Initialize session model
$session = new SessionModel();
$session -> username = "Unique Username"; // Here should be unique user name.
// Save user in session table
$session -> save();
// Authenticate user
$identity = new UserIdentity($session -> username, null);
$identity -> setUser($session);
$identity -> authenticate();
Yii::app() -> user -> login($identity, 0);
Yii::app() -> user -> setReturnUrl(array('videochat/index'));
$this -> redirect(Yii::app() -> user -> returnUrl);
}
}
hello Can we have desktop sharing in your script?
No, it doesn’t support desktop sharing.
1. Hi, am having issues with login. Must i provide a new username to accept my login everytime i want to login? Why cant I login with my previous username?
2. How can I customize the interface to suit my need. I mean how to add my company login, change some text on the chat interface.
Thanks
Hi, am having issues with login. Must i provide a new username to accept my login everytime i want to login? Why cant I login with my previous username?
2. How can I customize the interface to suit my need. I mean how to add my company logo, change some text on the chat interface.
3. Where can i find the HTML/CSS design files of chat interface
Thanks
Hello,
1. There is no registration function. So you just pick the name and join chat dashboard where you can participate with other people. I hope you set up cron job for cleaning expired sessions: http://docs.php5developer.com/video-chat/#customization_cron_jobs
2-3. All HTML templates are under: root/protected/views directory.
For exmaple main template for signed user is: root/protected/views/layouts/signed_column.php
CSS is under static/css folder.
Regards
Hey buddy, thanks for the update. It would be great if you could add recording which is available through Open Tok and web RTC as video archives onto Amazon bucket for example. Secondly a whiteboard is a great idea to collaborate , maybe share screen? There have been so many advancement with web rtc and open tok. Would be great for the script to keep up
Hi. I agree, but currently I’m working on a large private project and don’t have time for extra features. Only basic support.