• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

cShop WebShop error

Newbie Spellweaver
Joined
Nov 20, 2019
Messages
34
Reaction score
4
I am taiwanese.
Cash points can be displayed.
Items Can't buy.
Only edit "CBA\Inc\Config"
Code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="950"%>
<%
Option Explicit
response.Buffer = True
response.Charset = "big5"
Server.ScriptTimeout = 180

Dim MsSqlIp, MsSqlData, MsSqlUserName, MsSqlPassWord
Dim HostName

'###########MsSQL Database Connection Settings##########
MsSqlIp = "[COLOR=#ff0000].\SQL[/COLOR]"        'Database connection address if there is a port to use IP, port

MsSqlData = "gmg_account"    'Game account database name

MsSqlUserName = "[COLOR=#ff0000]sa[/COLOR]"            'database username

MsSqlPassWord = "[COLOR=#ff0000]1234[/COLOR]"            'Database password

'#############Setting the website information#######

HostName = "http://" & request.ServerVariables("HTTP_HOST") & "/"
%>
[1] screenshot0000 - cShop WebShop error - RaGEZONE Forums [2] screenshot0001 - cShop WebShop error - RaGEZONE Forums [3] screenshot0002 - cShop WebShop error - RaGEZONE Forums
[4] screenshot0004 - cShop WebShop error - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Nov 20, 2019
Messages
34
Reaction score
4
The basic ability to set up a website is not enough

The first time I successfully turned on the server, of course I want to complete the dream that I had not completed before.
I want to create Legendary equipments and Directly pass the NPC of the BOOS room Infinite kill BOSS.
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Nov 20, 2019
Messages
34
Reaction score
4
Today's progress
The problem is

ODBC_SQL_Server_Driver]
[SQL_Server] Could not find server 'WIN 0D1AR9CLAQ6' in sys.servers


So I changed the computer name "WIN 0D1AR9CLAQ6"

Can buy cashop items :w00t: but another problem is "dbo.uspn_buy_goods_game_log" not found

screenshot0006 - cShop WebShop error - RaGEZONE Forums Confirm buy>> screenshot0007 - cShop WebShop error - RaGEZONE Forums it's work

I do not make SQL tables.So I'll edit it "CBA\cShop\itemdetail_buy_cli.asp" comment out
Code:
Select Case Buy_Msg
    Case 0
        Conn.execute("UPDATE [dbo].[_stt_sell_webshop] SET [PRICE] = [PRICE] - "& Goods_Limit_Price &" WHERE ACCOUNT_CODE = "& Account_Code &"")
            'Write purchase log
        [COLOR=#ff0000]'[/COLOR]Conn.execute("exec  [dbo].[uspn_buy_goods_game_log] @[I][B][URL="http://forum.ragezone.com/members/162874.html"]account[/URL][/B][/I]_code="& Account_Code &", @[I][B][URL="http://forum.ragezone.com/members/162874.html"]account[/URL][/B][/I]_gid= N'"& PostID &"', @[I][B][URL="http://forum.ragezone.com/members/336895.html"]goods[/URL][/B][/I]_code= "& PostItem &", @[I][B][URL="http://forum.ragezone.com/members/336895.html"]goods[/URL][/B][/I]_name = N'"&Goods_Name&"', @buy_price= "& Goods_Limit_Price &", @[I][B][URL="http://forum.ragezone.com/members/551894.html"]Char[/URL][/B][/I]_uid=0, @[I][B][URL="http://forum.ragezone.com/members/734115.html"]Gift[/URL][/B][/I]_char_uid=0")
            'Total current consumption
        [COLOR=#ff0000]'[/COLOR]Conn.execute("exec  [dbo].[uspn_buy_goods_game_give_63027] @[I][B][URL="http://forum.ragezone.com/members/162874.html"]account[/URL][/B][/I]_code="& Account_Code &", @[I][B][URL="http://forum.ragezone.com/members/162874.html"]account[/URL][/B][/I]_gid= N'"& PostID &"', @[I][B][URL="http://forum.ragezone.com/members/336895.html"]goods[/URL][/B][/I]_code= "& PostItem &", @[I][B][URL="http://forum.ragezone.com/members/336895.html"]goods[/URL][/B][/I]_name = N'"&Goods_Name&"', @buy_price= "& Goods_Limit_Price &", @[I][B][URL="http://forum.ragezone.com/members/551894.html"]Char[/URL][/B][/I]_uid=0, @[I][B][URL="http://forum.ragezone.com/members/734115.html"]Gift[/URL][/B][/I]_char_uid=0")
            'Query if compensation is needed
        'dim IsFix,FixAmount
screenshot0006 - cShop WebShop error - RaGEZONE Forums <<Buy success !!

I follow the instructional videos.I want to know where is not edited ?Focus on "computer name"
 

Attachments

You must be registered for see attachments list
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Nov 20, 2019
Messages
34
Reaction score
4
I follow the instructional videos.I want to know where is not edited ?Focus on "computer name"
Today's progress
I found the problem.Video tutorials, did not get this.

gmg_account table >> dbo.tbl_world_dblinkname >> dblinkname >>Change to computer name
 
Upvote 0
Newbie Spellweaver
Joined
Aug 13, 2013
Messages
80
Reaction score
51
Today's progress
I found the problem.Video tutorials, did not get this.

gmg_account table >> dbo.tbl_world_dblinkname >> dblinkname >>Change to computer name
I understand how this can be confusing. You will need to find the name of your computer and the name of your SQL instance. This can be found by logging into SQL Management Studio as the name of the server you connect to.

For example, if the name of my computer is "TRICKS2-PC" and I named my SQL instance "TRICKDB" while setting it up, I would type in "TRICKS2-PC\TRICKDB" in the row labeled "1" since it applies to the world labeled "1" (which is the first one listed)
 
Upvote 0
Newbie Spellweaver
Joined
Nov 20, 2019
Messages
34
Reaction score
4
I recently tested to find some knowledge.
PI3k1Vo - cShop WebShop error - RaGEZONE Forums
Ip5IXdF - cShop WebShop error - RaGEZONE Forums

eI7wMam - cShop WebShop error - RaGEZONE Forums

Default when installing SQL.Try to modify another name.Throw this error message.
Microsoft OLE DB Provider for ODBC Drivers error '80040e4d'
[Microsoft] [ODBC SQL Server Driver] [SQL Server] Login failed for user 'sa1'.
/inc/conn.asp, line 10

It's the same even if I change it to not be "sa".
HNtsbsP - cShop WebShop error - RaGEZONE Forums



 

Attachments

You must be registered for see attachments list
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Jun 30, 2014
Messages
9
Reaction score
0
haha1 - cShop WebShop error - RaGEZONE Forums

Confirm buy>> it's not work
Where do I need to fix it? All the fixes are haha1.
 
Upvote 0
Newbie Spellweaver
Joined
Aug 10, 2014
Messages
60
Reaction score
4
follow the tutorial, he shows you everything.

haha1 - cShop WebShop error - RaGEZONE Forums

Now I'm following the tutorial. I can already charge points, but nothing happens when I buy an item.
and when i go to /cshop/itemdetail_buy_cli.asp it said FAIL46.
I already update libcmgds to match with client and sqlserver(dbo_tbl_goods) but problem is still happen.
could you guide me ? Am I missing something?
Thank you for your advise.:eek:tt:
 
Last edited:
Upvote 0
Experienced Elementalist
Joined
Oct 2, 2005
Messages
234
Reaction score
48
haha1 - cShop WebShop error - RaGEZONE Forums
Now I'm following the tutorial. I can already charge points, but nothing happens when I buy an item.and when i go to /cshop/itemdetail_buy_cli.asp it said FAIL46.I already update libcmgds to match with client and sqlserver(dbo_tbl_goods) but problem is still happen.could you guide me ? Am I missing something?Thank you for your advise.:eek:tt:
i would look threw the error logs also found in: C:\inetpub\logs\LogFiles\W3SVC1\
 
Upvote 0
Newbie Spellweaver
Joined
Aug 10, 2014
Messages
60
Reaction score
4
i would look threw the error logs also found in: C:\inetpub\logs\LogFiles\W3SVC1\

haha1 - cShop WebShop error - RaGEZONE Forums

These errors are now displayed.Items that appear in the My Shop Inventory bag. I was added by TSgiveaway.They are still unable to make any purchases.
These are my logs.
Code:
#Software: Microsoft Internet Information Services 10.0
#Version: 1.0
#Date: 2022-03-08 06:09:32
#Fields: date time s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) cs(Referer) sc-status sc-substatus sc-win32-status time-taken
2022-03-08 06:09:32 25.7.174.15 POST /cShop/item_checkpt.asp - 8808 - 25.7.174.15 MERONG(0.9/;p) - 200 0 0 318
2022-03-08 06:09:40 25.7.174.15 POST /cShop/itemdetail_buy_cli.asp - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) - 200 0 0 24
2022-03-08 06:09:40 25.7.174.15 GET /images/index_bg.gif - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 404 0 2 1
2022-03-08 06:09:48 25.7.174.15 POST /cShop/itemdetail_buy_cli.asp |231|80040e14|[Microsoft][ODBC_SQL_Server_Driver][SQL_Server]Could_not_find_server_'JUMPPC'_in_sys.servers._Verify_that_the_correct_server_name_was_specified._If_necessary__execute_the_stored_procedure_sp_addlinkedserver_to_add_the_server_to_sys.servers. 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 500 0 0 5253
2022-03-08 06:09:48 25.7.174.15 POST /cShop/item_checkpt.asp - 8808 - 25.7.174.15 MERONG(0.9/;p) - 200 0 0 12
2022-03-08 06:09:53 25.7.174.15 POST /cShop/item_checkpt.asp - 8808 - 25.7.174.15 MERONG(0.9/;p) - 200 0 0 8
2022-03-08 06:10:08 25.7.174.15 POST /cShop/itemdetail_buy_cli.asp - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) - 200 0 0 17
2022-03-08 06:10:08 25.7.174.15 GET /cShop/images/CMItems/19659.gif - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 200 0 0 3
2022-03-08 06:10:08 25.7.174.15 GET /images/index_bg.gif - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 404 0 2 0
2022-03-08 06:10:10 25.7.174.15 POST /cShop/item_checkpt.asp - 8808 - 25.7.174.15 MERONG(0.9/;p) - 200 0 0 10
2022-03-08 06:10:35 25.7.174.15 POST /cShop/itemdetail_buy_cli.asp - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) - 200 0 0 21
2022-03-08 06:10:35 25.7.174.15 GET /images/index_bg.gif - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 404 0 2 0
2022-03-08 06:10:41 25.7.174.15 POST /cShop/itemdetail_buy_cli.asp |231|80040e14|[Microsoft][ODBC_SQL_Server_Driver][SQL_Server]Could_not_find_server_'JUMPPC'_in_sys.servers._Verify_that_the_correct_server_name_was_specified._If_necessary__execute_the_stored_procedure_sp_addlinkedserver_to_add_the_server_to_sys.servers. 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 500 0 0 3038
2022-03-08 06:10:46 25.7.174.15 POST /cShop/item_checkpt.asp - 8808 - 25.7.174.15 MERONG(0.9/;p) - 200 0 0 10
2022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+404+0+2+1 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko [URL]http://25.7.174.15:8808/cShop/[/URL] 404 0 2 0
2022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+500+0+0+3038 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko [URL]http://25.7.174.15:8808/cShop/[/URL] 404 0 2 0
2022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+500+0+0+5253 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko [URL]http://25.7.174.15:8808/cShop/[/URL] 404 0 2 0
2022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+404+0+2+0 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko [URL]http://25.7.174.15:8808/cShop/[/URL] 404 0 2 1
2022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+500+0+0+5253 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko - 404 0 2 0
2022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+404+0+2+0 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko - 404 0 2 0
2022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+404+0+2+1 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko - 404 0 2 1
2022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+500+0+0+3038 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko - 404 0 2 1
2022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+200+0+0+3 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko [URL]http://25.7.174.15:8808/cShop/[/URL] 404 0 2 1
2022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+200+0+0+3 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko - 404 0 2 1
Solved I added sp_addlinkedserver to MSSQL then I can bought item from Myshop Yeah!!
but Visual Studio debugger is still appear and does you know about dbo.uspn_buy_goods_game_log ?
I cant find it in database.
zmfqHzI - cShop WebShop error - RaGEZONE Forums


Thank you for answering me
:eek:tt::eek:tt::eek:tt::eek:tt::eek:tt::eek:tt:
 

Attachments

You must be registered for see attachments list
Last edited:
Upvote 0
Experienced Elementalist
Joined
Oct 2, 2005
Messages
234
Reaction score
48
haha1 - cShop WebShop error - RaGEZONE Forums
These errors are now displayed.Items that appear in the My Shop Inventory bag. I was added by TSgiveaway.They are still unable to make any purchases.These are my logs.
Code:
#Software: Microsoft Internet Information Services 10.0#Version: 1.0#Date: 2022-03-08 06:09:32#Fields: date time s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) cs(Referer) sc-status sc-substatus sc-win32-status time-taken2022-03-08 06:09:32 25.7.174.15 POST /cShop/item_checkpt.asp - 8808 - 25.7.174.15 MERONG(0.9/;p) - 200 0 0 3182022-03-08 06:09:40 25.7.174.15 POST /cShop/itemdetail_buy_cli.asp - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) - 200 0 0 242022-03-08 06:09:40 25.7.174.15 GET /images/index_bg.gif - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 404 0 2 12022-03-08 06:09:48 25.7.174.15 POST /cShop/itemdetail_buy_cli.asp |231|80040e14|[Microsoft][ODBC_SQL_Server_Driver][SQL_Server]Could_not_find_server_'JUMPPC'_in_sys.servers._Verify_that_the_correct_server_name_was_specified._If_necessary__execute_the_stored_procedure_sp_addlinkedserver_to_add_the_server_to_sys.servers. 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 500 0 0 52532022-03-08 06:09:48 25.7.174.15 POST /cShop/item_checkpt.asp - 8808 - 25.7.174.15 MERONG(0.9/;p) - 200 0 0 122022-03-08 06:09:53 25.7.174.15 POST /cShop/item_checkpt.asp - 8808 - 25.7.174.15 MERONG(0.9/;p) - 200 0 0 82022-03-08 06:10:08 25.7.174.15 POST /cShop/itemdetail_buy_cli.asp - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) - 200 0 0 172022-03-08 06:10:08 25.7.174.15 GET /cShop/images/CMItems/19659.gif - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 200 0 0 32022-03-08 06:10:08 25.7.174.15 GET /images/index_bg.gif - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 404 0 2 02022-03-08 06:10:10 25.7.174.15 POST /cShop/item_checkpt.asp - 8808 - 25.7.174.15 MERONG(0.9/;p) - 200 0 0 102022-03-08 06:10:35 25.7.174.15 POST /cShop/itemdetail_buy_cli.asp - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) - 200 0 0 212022-03-08 06:10:35 25.7.174.15 GET /images/index_bg.gif - 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 404 0 2 02022-03-08 06:10:41 25.7.174.15 POST /cShop/itemdetail_buy_cli.asp |231|80040e14|[Microsoft][ODBC_SQL_Server_Driver][SQL_Server]Could_not_find_server_'JUMPPC'_in_sys.servers._Verify_that_the_correct_server_name_was_specified._If_necessary__execute_the_stored_procedure_sp_addlinkedserver_to_add_the_server_to_sys.servers. 8808 - 25.7.174.15 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.2;+WOW64;+Trident/7.0;+.NET4.0C;+.NET4.0E;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.30729;+.NET+CLR+3.5.30729;+Zoom+3.6.0) [URL]http://25.7.174.15:8808/cShop/itemdetail_buy_cli.asp[/URL] 500 0 0 30382022-03-08 06:10:46 25.7.174.15 POST /cShop/item_checkpt.asp - 8808 - 25.7.174.15 MERONG(0.9/;p) - 200 0 0 102022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+404+0+2+1 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko [URL]http://25.7.174.15:8808/cShop/[/URL] 404 0 2 02022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+500+0+0+3038 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko [URL]http://25.7.174.15:8808/cShop/[/URL] 404 0 2 02022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+500+0+0+5253 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko [URL]http://25.7.174.15:8808/cShop/[/URL] 404 0 2 02022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+404+0+2+0 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko [URL]http://25.7.174.15:8808/cShop/[/URL] 404 0 2 12022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+500+0+0+5253 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko - 404 0 2 02022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+404+0+2+0 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko - 404 0 2 02022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+404+0+2+1 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko - 404 0 2 12022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+500+0+0+3038 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko - 404 0 2 12022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+200+0+0+3 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko [URL]http://25.7.174.15:8808/cShop/[/URL] 404 0 2 12022-03-08 06:16:42 25.7.174.15 GET /cShop/itemdetail_buy_cli.asp+200+0+0+3 - 8808 - 25.7.174.15 Mozilla/5.0+(Windows+NT+6.1;+Trident/7.0;+rv:11.0)+like+Gecko - 404 0 2 1
Solved I added sp_addlinkedserver to MSSQL then I can bought item from Myshop Yeah!!but Visual Studio debugger is still appear and does you know about dbo.uspn_buy_goods_game_log ?I cant find it in database.
haha1 - cShop WebShop error - RaGEZONE Forums
Thank you for answering me:eek:tt::eek:tt::eek:tt::eek:tt::eek:tt::eek:tt:
you just need to update: [WINSERVER] with your server name.
Code:
USE [gmg_account]GO/****** Object:  StoredProcedure [dbo].[uspn_buy_goods_game_log]    Script Date: 3/8/2022 12:18:53 PM ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO-- =============================================-- Author:		-- Create date: -- Description:	-- =============================================CREATE PROCEDURE [dbo].[uspn_buy_goods_game_log] [USER=162874]account[/USER]_code	int			-- 구매 유저uid, [USER=162874]account[/USER]_gid	varchar(18)	-- 구매 유저id, [USER=336895]goods[/USER]_code		int			-- 상품 코드, [USER=336895]goods[/USER]_name		varchar(50)	--  GoodsName	, [USER=2000321279]Buy[/USER]_price		int			-- 구매 금액, [USER=551894]Char[/USER]_uid		int = 0		-- 구매 캐릭uid, [USER=734115]Gift[/USER]_char_uid	int = null	-- 선물 캐릭uidasset nocount onset lock_timeout 10000	declare 		 [USER=551894]Char[/USER]_level		smallint		, [USER=551894]Char[/USER]_name		varchar(17)			,	@tm_level		smallint		, [USER=551894]Char[/USER]_type		smallint		, [USER=551894]Char[/USER]_job		smallint		, [USER=551894]Char[/USER]_f_type	tinyint		, [USER=854225]chk[/USER]_awakening	tinyint	-- 각성 여부 0: 미각성, 1: 각성		, [USER=854225]chk[/USER]_guild		tinyint	-- 길드 가입 여부 체크 0: 미가입, 1: 가입		, [USER=2000145700]Gen[/USER]_time		smalldatetime				, [USER=734115]Gift[/USER]_user_uid		int		, [USER=734115]Gift[/USER]_user_id		varchar(17)		, [USER=734115]Gift[/USER]_char_level	smallint		, [USER=734115]Gift[/USER]_char_name		varchar(17)					, [USER=734115]Gift[/USER]_tm_level		smallint		, [USER=734115]Gift[/USER]_char_type		smallint		, [USER=734115]Gift[/USER]_char_job		smallint		, [USER=734115]Gift[/USER]_char_f_type	tinyint		, [USER=734115]Gift[/USER]_chk_awakening	tinyint	-- 각성 여부 0: 미각성, 1: 각성		, [USER=734115]Gift[/USER]_chk_guild		tinyint	-- 길드 가입 여부 체크 0: 미가입, 1: 가입		, [USER=734115]Gift[/USER]_gen_time		smalldatetime		, [USER=2000321279]Buy[/USER]_access_ip		char(15)							set [USER=551894]Char[/USER]_uid = 0	set [USER=551894]Char[/USER]_level = 1	set [USER=551894]Char[/USER]_name = ''	set @tm_level = 1	set [USER=551894]Char[/USER]_type = 1	set [USER=551894]Char[/USER]_job = 1	set [USER=551894]Char[/USER]_f_type = 0	set [USER=854225]chk[/USER]_awakening = 0	set [USER=854225]chk[/USER]_guild = 0	set [USER=2000145700]Gen[/USER]_time = getdate()	set [USER=2000321279]Buy[/USER]_access_ip = ''		set [USER=734115]Gift[/USER]_user_uid = null	set [USER=734115]Gift[/USER]_user_id = null	set [USER=734115]Gift[/USER]_char_level = null	set [USER=734115]Gift[/USER]_char_name = null	set [USER=734115]Gift[/USER]_tm_level = null	set [USER=734115]Gift[/USER]_char_type = null	set [USER=734115]Gift[/USER]_char_job = null	set [USER=734115]Gift[/USER]_char_f_type = null	set [USER=734115]Gift[/USER]_chk_awakening = null	set [USER=734115]Gift[/USER]_chk_guild = null	set [USER=734115]Gift[/USER]_gen_time = null				select 	 [USER=551894]Char[/USER]_uid		= C.uid				-- 캐릭터 UID	, [USER=551894]Char[/USER]_type		= C.type			-- 캐릭터 종류 (1 ~ 8)	, [USER=551894]Char[/USER]_name		= C.name			-- 캐릭터 이름	, [USER=551894]Char[/USER]_job		= case when job_3 > 0 then job_3					  		   when job_2 > 0 then job_2						  else job						  end				-- 캐릭터 직업	, [USER=551894]Char[/USER]_f_type	= C.f_type			-- 캐릭터 기본타입 (0 ~ 3)				, [USER=551894]Char[/USER]_level		= CT.level			-- 캐릭터 레벨	,	@tm_level		= CT.tm_level		-- 캐릭터 TM Level	, [USER=854225]chk[/USER]_awakening	= case when isnull(CA.awakening_flag, 0) = 1 then 1 						  else 0 end 	, [USER=854225]chk[/USER]_guild		= case when isnull(G.guild_code, 0) > 1 then 1 						  else 0 end 	, [USER=2000145700]Gen[/USER]_time		= C.gen_time	, [USER=2000321279]Buy[/USER]_access_ip	= U.ip					  						  	from [WINSERVER].trickster.dbo.char_attr as C 	inner join [WINSERVER].trickster.dbo.char_state as CS 		on C.uid = CS.uid and C.owner = [USER=162874]account[/USER]_code and CS.authority  2 and CS.state = 1	inner join [WINSERVER].trickster.dbo.char_status as CT 		on CS.uid = CT.uid	inner join [WINSERVER].trickster.dbo.user_info as U on C.owner = U.uid		left outer join [WINSERVER].trickster.dbo.tbl_char_awakening as CA		on C.uid = CA.char_uid	left outer join [WINSERVER].trickster.dbo.tbl_guild_member as G		on C.uid = G.char_uid	where C.uid = (cast  [USER=551894]Char[/USER]_uid as bit) ^ 1) * C.uid + [USER=551894]Char[/USER]_uid		--写入商城记录	if [USER=551894]Char[/USER]_uid!=0)	begin		insert into dbo._stt_Cash_buy_log ([buy_account_gid]      ,[buy_char_id]      ,[buy_char_name]      ,[goods_code]      ,[goods_name]      ,[buy_price]      ,[buy_time]) values  [USER=162874]account[/USER]_gid [USER=551894]Char[/USER]_uid [USER=551894]Char[/USER]_name [USER=336895]goods[/USER]_code [USER=336895]goods[/USER]_name [USER=2000321279]Buy[/USER]_price,GETDATE())	endGO
 
Upvote 0
Newbie Spellweaver
Joined
Aug 10, 2014
Messages
60
Reaction score
4
Could you please format the code or upload a txt file? I failed to execute it. Thank you very much
 
Upvote 0
Experienced Elementalist
Joined
Oct 2, 2005
Messages
234
Reaction score
48
Thanks for your help But now they say dbo._stt_cash_buy_log is missing

Here is the creation script for that table.

Code:
USE [gmg_account]
GO
/****** Object:  Table [dbo].[_stt_Cash_buy_log]    Script Date: 3/10/2022 9:33:33 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[_stt_Cash_buy_log](
    [buy_price] [int] NULL,
    [buy_account_gid] [varchar](50) NULL,
    [buy_char_id] [varchar](50) NULL
) ON [PRIMARY]
GO
 
Upvote 0
Newbie Spellweaver
Joined
Aug 10, 2014
Messages
60
Reaction score
4
Here is the creation script for that table.

Code:
USE [gmg_account]
GO
/****** Object:  Table [dbo].[_stt_Cash_buy_log]    Script Date: 3/10/2022 9:33:33 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[_stt_Cash_buy_log](
    [buy_price] [int] NULL,
    [buy_account_gid] [varchar](50) NULL,
    [buy_char_id] [varchar](50) NULL
) ON [PRIMARY]
GO

S5BgsXA - cShop WebShop error - RaGEZONE Forums

now it said invalid column name "buy_char_name" omg.
 

Attachments

You must be registered for see attachments list
Upvote 0
Newbie Spellweaver
Joined
Aug 10, 2014
Messages
60
Reaction score
4
not sure what is causing it to show that error now.
txea0vR - cShop WebShop error - RaGEZONE Forums

From the itemdetail_buy_cli.asp file, do you know how to link to another page or make server error 500 disappear?
 

Attachments

You must be registered for see attachments list
Upvote 0
Back
Top