ButterflyRP Emulator

Sab

I love milfs.
Jun 25, 2011
1,212
136
Best SWFs for this? Any?
What is the best CMS for this?
 
Last edited:

CrestHawk

Member
Dec 4, 2010
37
5
@Zodiak Am I the only one that isn't able to compile the emulator? If so, Zodiak can you please fix the source. I'm getting errors where it can't find certain requested files like the entire Database Manager is missing ect..

Look:
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1422,5): warning : The referenced project '..\..\ButterflyRP (Not BoonRP Version)\ServerSide\Connection Manager.csproj' does not exist.
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1422,5): warning : The referenced project '..\..\ButterflyRP (Not BoonRP Version)\WiredSolver\WiredSolver.csproj' does not exist.
& the list goes on... to 1200

If the source is legit, why are all these files missing? If you were able to update the EMU, there has to be a way we can improve it as-well right?
 
Last edited:

Zodiak

recovering crack addict
Nov 18, 2011
450
411
To fix the ticket error in rev just find where it inserts the auth ticket (can't remember where it is) and make it insert/delete the ticket out of user_tickets. Not hard.
 

Sab

I love milfs.
Jun 25, 2011
1,212
136
To fix the ticket error in rev just find where it inserts the auth ticket (can't remember where it is) and make it insert/delete the ticket out of user_tickets. Not hard.
Its located in class.users

Code:
Code:
    final public function createSSO($k)   
    {       
        $sessionKey = 'RevCMS-'.rand(9,999).'/'.substr(sha1(time()).'/'.rand(9,9999999).'/'.rand(9,9999999).'/'.rand(9,9999999),0,33);
      
        $this->updateUser($k, 'auth_ticket', $sessionKey);
      
        unset($sessionKey);
    }

What do I do?
 

Zodiak

recovering crack addict
Nov 18, 2011
450
411
Its located in class.users

Code:
Code:
    final public function createSSO($k) 
    {     
        $sessionKey = 'RevCMS-'.rand(9,999).'/'.substr(sha1(time()).'/'.rand(9,9999999).'/'.rand(9,9999999).'/'.rand(9,9999999),0,33);
    
        $this->updateUser($k, 'auth_ticket', $sessionKey);
    
        unset($sessionKey);
    }

What do I do?
PHP:
final public function createSSO($k)   
    {        
    global $engine;
        $sessionKey = 'RevCMS-'.rand(9,999).'/'.substr(sha1(time()).'/'.rand(9,9999999).'/'.rand(9,9999999).'/'.rand(9,9999999),0,33);
      
        $this->updateUser($k, 'auth_ticket', $sessionKey);
        $engine->query("DELETE FROM `user_tickets` WHERE `userid` = '".$_SESSION['user']['id']."'");
        $engine->query("INSERT INTO `user_tickets` (userid,sessionticket,ipaddress) VALUES ('".$_SESSION['user']['id']."', '".$sessionKey."', '".$_SERVER['REMOTE_ADDR']."')");
      
        unset($sessionKey);
    }

Use that.
 

IPMB1

Member
Jan 1, 2013
249
20
When i added the template to fix sso error... it gets There was no user found in your sso ticket.
 

Users who are viewing this thread

Top