Trypolin Emu + GabCMS

Eubboline

New Member
Jul 18, 2012
11
2
Hello everyone ;)

I was trying out trypolin emulator lately and edited the sso part in UserDataFactory.cs from the user_tickets one to the normal auth_ticket sql.

Now I stuck. The client loads but the emulator doesn't shows me logging in. Further stays the client black. I setup the txts right aswell the ports and host.

What do i do wrong?


Well and then I have a second problem. There is another thread on here ( ) with the whole package. But there i get the no sso ticket was found for this user error... I could even say this happens with every cms i use with trypolin.


Greetings moere
 

Eubboline

New Member
Jul 18, 2012
11
2
Did you edit the UserDataFactory.cs in the correct way? or did you open it up in notepad...
I edited the whole part in Ms Visual Studios:
Code:
                if (ButterflyEnvironment.useSSO)
                {
                    queryreactor.setQuery("SELECT users.* FROM users RIGHT JOIN user_tickets ON user_tickets.userid = users.id WHERE user_tickets.sessionticket = @sso AND ipaddress = @ipaddress ");
                }
                else
                {
                    queryreactor.setQuery("SELECT users.* FROM users RIGHT JOIN user_tickets ON user_tickets.userid = users.id WHERE user_tickets.sessionticket = @sso ");
                }
to
Code:
queryreactor.setQuery("SELECT * FROM users WHERE auth_ticket = @sso");
 
Last edited:

Users who are viewing this thread

Top