I am trying to add userplane video chat to dolphin 7 and need to come up with a session identifier for the currently logged in user. It is called $strSessionGUID for those who have added userplane to their sites. I have no idea how to find this, can anyone give me some ideas?
Dan
|
After working on this some more, what I need is to get the code to get the MemberID of the member that lands on the userplane video chat page. It is needed to log into Userplane. Userplane is a great video chat that they host themselves, eliminating the need for expensive dedicated hosting for Dolphin. I have tried several ways but I am not an expert programmer and I can't figure out the code. Can someone point me in th eright direction?
Thanks,
Dan
|
Hi Dan,
I am trying to do the same thing myself. After having chats with Userplane, the sting needed seems to be $strSessionGUID but I too cannot find how to get this from the Dolphin database in PHPMYADMIN.
Have you had any joy?
|
Hi Rich,
I have had no luck and no support fron Userplane. After trying to impress upon them that many people would like to use their software with Dolphin but can't, they say they MAY develop a Dolphin module sometime in 2012, however they were not very eager to do it. Very poor customer service.
Dan
|
someone has to know how to do this, that can help out MY SITES http://viptopia.net general social networking | http://www.rangerschat.com/ niche site |
The var $strSessionGUID is meant to be used for the PHP session key to uniquely identify the session. However, dolphin does not use php sessions as many scripts do.
I have read that you can use something else that would be unique as well.
So try $strSessionGUID = microtime(true); https://www.deanbassett.com |