150 comments found.
Can i Get Proper support if i purchase this now ?
I purchased another product on codecanyon (https://codecanyon.net/item/magnoliyan-video-chat-pro/7519796) and your product is exactly the same. I’m confused.
Well, we have totally different products.
Hi! can I order from you scripts ?
Hello. No, I’m not developing custom scripts.
Hi, I basically have two questions.
1. Should I be purchasing anything from Opentok as well or just the registration will do?
2. Can you tell me what resources may be used/needed for concurrent users?
I intend to use this on gaming server for gamers to interact with video.
Hi,
1. Well, you’ve to purchase monthly subscription or you can create every month free trial account.
2. Could you explain in more details?
I am a bit confused. For this video chat to work opentok account is a must?
Yes.
Hello,
This is a standalone app. You need to re-write authentication logic if you want to integrate with your website, otherwise already logged users will be redirected to “login page” of video chat.
Regards
how would i rewrite that
public function actionLogin() {
// Here you include classes to
//check whether user is logged in your app
if(userIsLogged()) {
// Initialize session model
$session = new SessionModel();
$session -> username = getUsername(); // 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'));
return $this -> redirect(Yii::app() -> user -> returnUrl);
}
}
Hi, is this app running well right now? I´m try to test but I get a server error.
Hi. Yes I know. I’m working on migration of my demo app to another hosting which supports https protocol. I hope on next week it will be working.
Tomorrow demo will be working.
Great news, I will back tomorrow for testing. regards
The SSL is ready. I’ll be moving my app on 18:00 GMT+2, so the demo will be available at evening.
Done. You can test
I still get the same error 403, regards
Do you open bookmarked site? I’ve changed link on demo page. All in all, I’m going to do a redirect from old website to new one.
Hello Were thinking about using your script for my staff to talk to next other. and we have installed the script like we are ment to, and we are getting this error when we try click another user name in video chat home page.
here the live site www.timmyholt.com/live
here is error Internal Server Error
Client error response [status code] 403 [reason phrase] Forbidden [url] https://api.opentok.com/session/create
An internal error occurred while the Web server was processing your request. Please contact the webmaster to report this problem.
Thank you.
2016-12-17 04:58:23
Hello. Please check an email.
check email please
I am interested in this, I want to use it for my where each user can have online meeting with others. I want that each user can see the list of the user that gives a serial to him. Is it possible?
Hi. This is a standalone script. It is working in a following way:
- User logs in
- User (A) click on other person ( B ) who is online.
- User B see that he has been invited to room by user A
- User B click on invitation link and start a dialog.
User can participate more than in one chat room at the same time.
Hi, Just bought this product, i can’t find on the documentation how to switch from Flash to webrtc to have support on Ios using the Bowser browser from ericson that support webrtc on iphones. Thanks
Hello,
The app is built on top of Opentok service. It’s already using WebRTC technology and there is no Flash backward compatibility. You can find here browser compatibility: https://www.tokbox.com/developer/sdks/js/
Regards
Hello, Thanks for your reply, i was talking about a quote you posted about this point:
forza020 Author over 2 years ago Flag
Now this script is using flash to stream a video. However you can switch to WebRTC . Here is the list of supported browser: http://en.wikipedia.org/wiki/WebRTC#Support How to switch between technologies you can find here: http://docs.php5developer.com/video-chat/#customization_video_streaming_technologies
It seems the new version is only in webrtc and the switch is not needed anymore right?
Yes, there was possibility to switch between webrtc and flash, however in January 1, 2015 opentok guys abandoned flash support and left only WebRTC support.
This is my old message. You will not find any mention about flash on product’s page and in documentation.
I am interested in this, i want to use it for my online meeting where i teaches multiple individuals at time softwares, is it possible to stream a computer screen with powerpoint presentation on it, or this is only from a camera perspective.
I am interested in this, i want to use it for my online meeting where i teaches multiple individuals at time softwares, is it possible to stream a computer screen with powerpoint presentation on it, or this is only from a camera perspective.
Hi. Sorry, this software doesn’t suits your needs
bro, can you make this one in codeigniter framework? im willing to pay you extra payment for that. please email me if you can. daynedotnet@gmail.com. thanks a lot mate, hope to hear from you soon.
Sorry mate, I’ve a lot of work.
i am looking into purchasing this plugin. Can this be integrated into a PHP website ?
Hello,
Sorry for late response. I was away. This is not easy, because this is standalone app. You need to develop authorization bridge between your app and my app. Another way is to refuse to use my authorization and integrate your own. To do this task you need to be familiar with OO PHP + Yii framework. I think you should search for another solution.
I have found an error, please fix immediately.
When I logout on a demo and try to login again but could not and appear the words “user already exist”, to make it more perfect and then I will buy it 
Hello,
The session is based on mysql, so all inactive users are destroyed after 60 seconds of inactivity. Try to login a little bit later.
please can i use this plugin in wordpress site?
This is standalone app, not WP plugin, so there is no way to use this app as one ecosystem with WP. The only way is to install it in sub directory.
How can I do the following
I want to pass the username in a GET var and auto login and also remove the capture, how would I do these two points?
Thanks
Hello,
Something like: 1. Open root\protected\controllers\VideochatController.php Replace following lines:
// If user trying to login
if(Yii::app() -> request -> isPostRequest AND isset($_POST['LoginForm']) AND is_array($_POST['LoginForm'])) {
// Set the form attributes
$loginForm -> setAttributes($_POST['LoginForm']);
with
// If user trying to login
if(isset($_GET['LoginForm']) AND is_array($_GET['LoginForm'])) {
// Set the form attributes
$loginForm -> setAttributes($_GET['LoginForm']);
Next, open: root\protected\models\LoginForm.php
and remove following line:
array('verifyCode', 'captcha', 'allowEmpty' => !CCaptcha::checkRequirements()),
Done. Request following URL to authenticate: example.com/videochat/login?LoginForm[username]=Peet
Note! If username already exists, then the login form will be displayed. In this way you need to open root\protected\views\videochat\login.php and remove unnecessary fields (captcha) + change form action attribute to GET.
Regards
perfect thanks, how / where do I change the session timeout? for some reason the page keeps timing out / the session i think keeps timing out and sending me back to the login page.
I’ve also made some nice changes to the script I would like to share with you – could you contact me on Skype: dnjamie
thanks
Also, how would I get the following to work.
when session.on(sessionDisconnect) I can make actions happen on the side / user that clicked leave room but how would I close the window.close() for the other party so both active session windows / tab close when someone leaves the chat session?
thanks
Hi.
1. Try to open main config file and add new array to components array.
'components' => array(
...
'session' => array(
'timeout' => 600, // in seconds
),
...
),
2. Actually, don’t understand what you want to achieve? Could you send some screenshots?
Regards, Roman
could you add me on skype please
Skype: dnjamie or email: jamie.whittingham@gmail.com -
I have modified your script a LOT and would like to bounce a few ideas off you
Thanks
Hello,
Thanks. Could we speak via email, because I’ve a lot of work, so I rarely be online in skype.
sure, my email = jamie.whittingham@gmail.com
OK. I’ll send you a letter when I’ll have free time.
Hi Forza : i will purchase the script + support fees i want to know before if you are availlable for this
Hello and Happy New Year!
Available for what
? For support? Yes. I always help my buyers to install and configure my products if they have troubles.
Thanks and can i edit the script and make it for multi rooms ?and also do i need a vps or just simple web hosting?
HTTPS (read here for more information) OpenTok Account PHP 5.3 or higher Cron jobs (important) GD Extension PDO Extension Multibyte String Functions Curl library Enough server resources to handle ajax text chatMost important thing is that you must have SSL and OpenTok account (for video streaming)
no i dont talk about using camera in multi user room, just text chat is this possible ?
Sorry, but there is no built in solution to achieve this task…
Hi i’m convinced with your script but i’m wondering if i can pass tokbox expenses. i know i can create new account with a different IP every month but it will annoy my client . So is there a solution that can handle it ?
Hello. Actually you already described the solution. You can create new account every 29 days, so customers will not feel discomforts.
Hi, Before Buying .. i have a Question.. Is this Plugin Working with Php Core.. (Simple Php)??? .
does this chat does audio chat? This chat work for social network(Crea8social)? Thanks
Hello,
Yes. This chat has audio + video support. Speaking about Crea8social, to my video chat is stand alone app and it hasn’t integration with other social networks.
Regards