Sandurr Clan

Status
Not open for further replies.
Experienced Elementalist
Joined
Oct 3, 2006
Messages
255
Reaction score
0
hey guys!!
finally ragezone get on again!! =]

now i have a doubt...
i still getting error 11 in clan of sandurr ( the working one from a friend )
ive already reinstalled framework 2.0 and nothing

ive uninstalled iis and framework, then first installed iis then framework and im using a correct claninsrt.aspx (look: )

a friend told that could be problem of iis
but im using the one that come in windows CD...
and my site work... but clan no...

what could be another possibility for fixing error 11?
PLEASE im here abt 5 days!!
my files worked in another pc but in host no...

could be error in clan.dll or sql.dll?
or registery? or any other file x.x...
or a wrong config of iis?

Thanks!!!!!!!=D
 
in "Web Sites" proprieties
then clik in ASP .NET?
and change to 2.0.57?
ive changed but still unworking...

any othr possibility?
couldnt be on those files?

( FIXED THIS IIS PROBLEM )and my iis is sayng
"An excessive number of users are...this Web Site"
"error 403,9"

and this is making the claninsert unusefull or somthing like this

because one i open in IE appear Code=100, and i heard that this mean that is correct the file...

so the problem is in the pc...

and this IIS error is fallowing me have 7 days =(

any possibiliti for this and clan? ^^
Thanks!
 
Last edited:
i have a new problem...



look at this claninsert error

and the other problem,
i cant change the asp version: look

meher - Sandurr Clan - RaGEZONE Forums


any idea?

thanks!^^
 
meher download the net. framework 2.0 in link install and change in IIS settings...

Bye..
 
luis i downloded this and installed...
but i still cant change the asp version
"...change in IIS settings..." which setting?
where i change?
thanks =]
 
i still cant change...
but couldnt i delete folder from framework 1.1.4322?
i use killbox tehn i can delet...

then reinstal 2.0? =D
 
in Default i can change but i WebSites i cant..

i have the net framework reinstalled 13 times
i still getting error 11
please someone knows?
(using sql server 2003 sp1)
 
HERE IS THE CLANINSERT.ASPX
JUST CHANGE "NAME" AND "PASS"
Open notepad copy and paste...


<%@ Page Language="VB" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="System.Data.SqlClient" %>
<script runat="server">

Function GetParameter(pName as string, pType as string) as string
dim lTmp as string
lTmp = Page.Request.QueryString.item(pName)

GetParameter = lTmp
End Function

Sub Page_Load(Sender As Object, E As EventArgs)

Dim dbhost, dbuser, dbpass, dbname, userid, gserver, chname, clName, expl, chtype, lv

dbhost = " ur NAME\SQLEXPRESS"
dbuser = "sa"
dbpass = "ur PASS"
dbname = "ClanDB"

Dim strSplit As String
strSplit = Chr("&H" & "0D")

userid = GetParameter ("userid","String")
gserver = GetParameter ("gserver","String")
chname = GetParameter("chname","String")
clName = GetParameter("clName","String")
chtype = GetParameter("chtype","String")
lv = GetParameter("lv","String")

expl = "www.ptnoname.com"

if userid="" Or gserver="" Or chname="" Or clName="" Or chtype="" or lv="" Then
Response.Write("Code=100" & strSplit)
Response.End
End if

Dim objConn, objReader, objCommand, objQuery

Dim connectionString As String = "server='" & dbhost & "'; user id='" & dbuser & "'; password='" & dbpass & "'; database='" & dbname & "'"

objConn = New SqlConnection(connectionString)
objConn.Open()

objQuery = "SELECT ClanName FROM UL WHERE ChName='" & chname & "'"

objCommand = New SqlCommand(objQuery, objConn)
objReader = objCommand.ExecuteReader()

If objReader.Read()
If objReader.Item(0) = "" Then
objReader.Close()
objQuery = "DELETE FROM UL WHERE ChName='" & chname & "'"

objCommand = New SqlCommand(objQuery, objConn)
objReader = objCommand.ExecuteReader()
Else
objReader.Close()
objConn.Close()
Response.Write("Code=2" & strSplit & "CMoney=0" & strSplit)
Response.End
End if
End if
objReader.Close()

objQuery = "SELECT ClanZang FROM CL WHERE ClanName='" & clName & "'"

objCommand = New SqlCommand(objQuery, objConn)
objReader = objCommand.ExecuteReader()

If objReader.Read()
objReader.Close()
objConn.Close()
Response.Write("Code=3" & strSplit & "CMoney=0" & strSplit)
Response.End
End if
objReader.Close()

objQuery = "SELECT IMG FROM LI WHERE ID=1"

objCommand = New SqlCommand(objQuery, objConn)
objReader = objCommand.ExecuteReader()

Dim iIMG As Integer

if objReader.Read() Then
iIMG = objReader.Item(0)
Else
iIMG = 1000000000
objReader.Close()
objQuery = "INSERT INTO LI values('" & (iIMG + 1) & "','1')"
objCommand = New SqlCommand(objQuery, objConn)
objReader = objCommand.ExecuteReader()
End if
objReader.Close()

iIMG = iIMG + 1

objQuery = "UPDATE LI SET IMG='" & iIMG & "' WHERE ID=1"

objCommand = New SqlCommand(objQuery, objConn)
objReader = objCommand.ExecuteReader()
objReader.Close()

objQuery = "INSERT INTO CL ([ClanName],[UserID],[ClanZang],[MemCnt],[Note],[MIconCnt],[RegiDate],[LimitDate],[DelActive],[PFlag],[KFlag],[Flag],[NoteCnt],[Cpoint],[CWin],[CFail],[ClanMoney],[CNFlag],[SiegeMoney]) values('" & clName & "','" & userid & "','" & chname & "','1','" & expl & "','" & iIMG & "',getdate(),getdate()+3600,'0','0','0','0','1','0 ','0','0','0','0','0')"
objCommand = New SqlCommand(objQuery, objConn)
objReader = objCommand.ExecuteReader()
objReader.Close()

objQuery = "SELECT IDX FROM CL WHERE ClanName='" & clName & "'"
objCommand = New SqlCommand(objQuery, objConn)

Dim IDX As String
objReader = objCommand.ExecuteReader()
If objReader.Read() Then
IDX = objReader.Item(0)
End If
objReader.Close()

objQuery = "INSERT INTO UL ([IDX],[userid],[ChName],[ClanName],[ChType],[ChLv],[Permi],[JoinDate],[DelActive],[PFlag],[KFlag],[MIconCnt]) values('" & IDX & "','" & userid & "','" & chname & "','" & clName & "','" & chtype & "','" & lv & "','0',getdate(),'0','0','0','" & iIMG & "')"
objCommand = New SqlCommand(objQuery, objConn)
objReader = objCommand.ExecuteReader()
objReader.Close()

objConn.Close()

Response.Write("Code=1" & strSplit & "CMoney=500000" & strSplit)
End Sub

</script>
<html>
<head>
</head>
<body>
</body>
</html>
 
Last edited:
now im not getting error from framework anymore
ive installed the sp2!!

but now... i still getting error 11
look my clanInsert is correct...



but could still giving me error 11?
 
bbchamps2000 search in sandurr clan 2.0 post and look for the files from FaHhH... is abt page 9 or 10...

AND ERROR 11?!

thanks^^
 
Of BAD configuration and much modifications no necessary..
 
Status
Not open for further replies.
Back