Register for your free account! | Forgot your password?

You last visited: Today at 06:52

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Sro_Shardmanager dead..

Discussion on Sro_Shardmanager dead.. within the SRO Private Server forum part of the Silkroad Online category.

Closed Thread
 
Old   #1
 
vnzla's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 253
Received Thanks: 5
Sro_Shardmanager dead..

please i need help.. everything is work fine but shardmanager dont because say billingserver dead and close please somebody can help me please.. this a picture the error



Uploaded with
vnzla is offline  
Old 09/23/2011, 05:48   #2
 
elite*gold: 0
Join Date: Oct 2007
Posts: 242
Received Thanks: 56
Check sticky threads there is the answer of your question. Im on my mobile thats why i couldnt give you link. Good luck with files
xglspyxgl is offline  
Old 09/23/2011, 06:09   #3
 
Darkness™'s Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 2,085
Received Thanks: 1,669
eng:
billingserver problems, check your iis server, edit the db connections and ips.

(C:/inetpub/wwwrot)

if you has already installed iis.

spanish:

el poblema esta en el billingserver, fijate las configs de conexion a db y ips, si podes mostranos como tenes los siguientes archivos, DBConnect.asp , GetTotalSilk.asp , PurchaseSilk.asp.
Saludos.
Darkness™ is offline  
Old 09/23/2011, 06:33   #4
 
vnzla's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 253
Received Thanks: 5
Quote:
Originally Posted by Darkness™ View Post
eng:
billingserver problems, check your iis server, edit the db connections and ips.

(C:/inetpub/wwwrot)

if you has already installed iis.

spanish:

el poblema esta en el billingserver, fijate las configs de conexion a db y ips, si podes mostranos como tenes los siguientes archivos, DBConnect.asp , GetTotalSilk.asp , PurchaseSilk.asp.
Saludos.
Spanish:



Uploaded with

aqui te mostrare los .asp

DBConnect.asp
Quote:
<%
Dim DBConnA, strConnectA
Set DBConnA = Server.CreateObject("ADODB.Connection")
strConnectA = "Provider=SQLOLEDB;Data Source=RIICRDO-PC\SQLEXPRESS;Initial Catalog=SRO_VT_ACCOUNT;user ID=sa;password=1234;"
DBConnA.Open strConnectA

%>

GetTotalSilk.asp
Quote:
<!-- #include file = "DBConnect.asp" -->
<!-- #include file = "Function.asp" -->
<!-- #include file = "Class_MD5.asp" -->
<%

On Error Resume Next

' Error
If Err.Number <> 0 Then
Response.Write "-1"
Response.End
End If

'''''''''' Check ACL only Call from Billing Server
Dim IP
Dim BillingServer
BillingServer = "5.155.140.114"
IP = Request.ServerVariables("REMOTE_ADDR")
'If(IP <> BillingServer) Then
' Response.Write "ACCESSDENY"
' Response.End
'End If
''''''''''
Dim sdSQL
Dim sdRS
Dim ReturnValue

sdSQL = "SET NOCOUNT ON EXEC CGI.CGI_WebGetTotalSilk "
'Response.Write sdSQL
'Response.End

Set sdRS = DBConnA.Execute(sdSQL)
ReturnValue = sdRS(0)

sdRS.Close
Set sdRS = Nothing
DBConnA.Close
Set DBConnA = Nothing

' Error
If Err.Number <> 0 Then
Response.Write "-1"
Response.End
End If
Response.Write ReturnValue
Response.End
%>
PurchaseSilk.asp
Quote:
<!-- #include file = "DBConnect.asp" -->
<!-- #include file = "Function.asp" -->
<!-- #include file = "Class_MD5.asp" -->
<%

On Error Resume Next

' Error
If Err.Number <> 0 Then
Response.Write "ERROR"
Response.End
End If



'''''''''' Check ACL only Call from Billing Server
Dim IP
Dim BillingServer
BillingServer = "5.155.140.114"
IP = Request.ServerVariables("REMOTE_ADDR")
If(IP <> BillingServer) Then
Response.Write "ACCESSDENY"
Response.End
End If

'''''''''''''''' Check MD5 secretstring
Dim OrderNo
Dim Username
Dim Package
Dim NumSilk
Dim ECash
Dim Secret

OrderNo = Trim(Request("OrderNo"))
OrderNo = FilterReqXSS(OrderNo)

Username = Trim(Request("Username"))
Username = FilterReqXSS(Username)

Package = Trim(Request("Package"))
Package = FilterReqXSS(Package)

NumSilk = Trim(Request("NumSilk"))
NumSilk = FilterReqXSS(NumSilk)

ECash = Trim(Request("ECash"))
ECash = FilterReqXSS(ECash)

SecretStr = Trim(Request("SecretStr"))
SecretStr = FilterReqXSS(SecretStr)

' Error - Parameter
Dim ParaResult
ParaResult = "OK"

If OrderNo = "" OR IsNull(OrderNo) OR IsEmpty(OrderNo) Then
ParaResult = "PARA01"
End If
If Username = "" OR IsNull(Username) OR IsEmpty(Username) Then
ParaResult = "PARA02"
End If
If Package = "" OR IsNull(Package) OR IsEmpty(Package) Then
ParaResult = "PARA03"
End If
If NumSilk = "" OR IsNull(NumSilk) OR IsEmpty(NumSilk) Then
ParaResult = "PARA04"
End If
If ECash = "" OR IsNull(ECash) OR IsEmpty(ECash) Then
ParaResult = "PARA05"
End If
If SecretStr = "" OR IsNull(SecretStr) OR IsEmpty(SecretStr) Then
ParaResult = "PARA06"
End If

If ParaResult <> "OK" Then
DBConnA.Close
Set DBConnA = Nothing
Response.Write ParaResult
Response.End
End If

''''''''''CHECK MD5 Valid key String
''''''''''
Dim KeyString
Dim objMD5
Dim Confirm_Valid_Key

KeyString = "VDC-Net2E-CGI"

Set objMD5 = New MD5
objMD5.Text = OrderNo & Username & Package & NumSilk & ECash & IP & KeyString
Confirm_Valid_Key = objMD5.HEXMD5
' Error
If Err.Number <> 0 Then
DBConnA.Close
Set DBConnA = Nothing
Response.Write "ERROR"
Response.End
End If

If Trim(SecretStr) <> Trim(Confirm_Valid_Key) Then
DBConnA.Close
Set DBConnA = Nothing
Response.Write "INVALID"
Response.End
End If

'''''''''' Check User Exist
Dim sdSQL
Dim sdRS
Dim ReturnValue
sdSQL = "SET NOCOUNT ON EXEC CGI.CGI_WebPurchaseSilk '" & OrderNo & "'," & Username & "," & Package & "," & NumSilk & "," & ECash & " "
' Response.Write sdSQL
Set sdRS = DBConnA.Execute(sdSQL)
ReturnValue = sdRS(0)
sdRS.Close
Set sdRS = Nothing
DBConnA.Close
Set DBConnA = Nothing
' Error
If Err.Number <> 0 Then
Response.Write "ERROR"
Response.End
End If
Response.Write ReturnValue
Response.End
%>
english:

i really have a this asp files in these direction



Uploaded with
vnzla is offline  
Old 09/23/2011, 06:56   #5
 
Darkness™'s Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 2,085
Received Thanks: 1,669
Quote:
<%
Dim DBConnA, strConnectA
Set DBConnA = Server.CreateObject("ADODB.Connection")
strConnectA = "Provider=SQLOLEDB;Data Source=RIICRDO-PC\SQLEXPRESS;Initial Catalog=SRO_VT_ACCOUNT;user ID=sa;password=1234;"
DBConnA.Open strConnectA
%>
then i think there is wrong.


esa es la que estas usando en las configs de los .ini ? ( la conexion la db digo). que sql estas usando
Darkness™ is offline  
Old 09/23/2011, 07:01   #6
 
elite*gold: 0
Join Date: Jul 2008
Posts: 172
Received Thanks: 14
Quote:
Originally Posted by Darkness™ View Post
then i think there is wrong.


esa es la que estas usando en las configs de los .ini ? ( la conexion la db digo). que sql estas usando
hey DarkNess i have 1 Error With the GlobalManger.exe Maybe u Can Help me :3
Maybe u could help me for TeamViewer if u are Free OFC TY

djhueso is offline  
Old 09/23/2011, 14:40   #7
 
vnzla's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 253
Received Thanks: 5
yes look..



Uploaded with

si mira jejeje si lo has hecho me podrias ayudar a traves de teamviewer o msn,, como vos querais
vnzla is offline  
Old 09/23/2011, 15:58   #8
 
elite*gold: 0
Join Date: May 2009
Posts: 11
Received Thanks: 2
TRY THIS
hakan711 is offline  
Old 09/23/2011, 16:30   #9
 
vnzla's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 253
Received Thanks: 5
Quote:
Originally Posted by djhueso View Post
hey DarkNess i have 1 Error With the GlobalManger.exe Maybe u Can Help me :3
Maybe u could help me for TeamViewer if u are Free OFC TY

Check the ip and port of server.cfg, when you open first the certificate.. He say that connects to a certain ip and the port, default is port 32000 i think, check in server.cfg if in globalmanager you have the same ip and port
vnzla is offline  
Closed Thread


Similar Threads Similar Threads
[Suggestion] Wir wollen eine Left 4 Dead bzw. Left 4 Dead 2 Section
01/31/2012 - Suggestions & Feedback - 25 Replies
Hört auf zu schreiben... Ich war high!
B:Mw 2 Account S: Left 4 Dead 2/Dead Space 2 Key
08/21/2011 - Steam Trading - 0 Replies
Hi Leute ich suche einen Left 4 Dead 2 Key oder einen Dead Space 2 Key. Biete euch einen Steam Account mit Modern Warfare 2 unbanned. :)
[S] Kane and Lynch Dead Man & Dead Space [B]10€ psc
01/03/2011 - Steam Trading - 4 Replies
Biete nun 2,50€ psc für Dead Space.
Wall hack in dead front common and dead front ark
05/25/2009 - Dekaron - 6 Replies
what do u type in value type text scan for dead front common and dead front ark?



All times are GMT +1. The time now is 06:55.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.