|
主题:ESHOP商城购物问题 [收藏主题] | 转到: |
先声明,原网站是CMS系统并从4开始慢慢升级上来的,这次改用ESHOP系统,管理员曾说过可以直接使用原数据库,可是发现数据库不仅少了很多字段,而且字段也不对,现在使用商城购物时发生了以下两个问题
1、点击立即购买出现如下错误 错误类型: ADODB.Recordset (0x800A0CC1) 在对应所需名称或序数的集合中,未找到项目。 /shop/shoppingcart.asp, 第 147 行 浏览器类型: Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0 网页: POST 36 ??? /shop/shoppingcart.asp POST Data: action=Add&Q_1=1&AttributeCart=&ID=1 2、点击加入购物车,然后结算,出现如下错误 错误类型: Microsoft JET Database Engine (0x80040E21) 字段太小而不能接受所要添加的数据的数量。试着插入或粘贴较少的数据。 /shop/order.asp, 第 457 行 浏览器类型: Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0 网页: POST 481 ??? /shop/order.asp POST Data: Action=Confirm&istype=0&ContactMan=%C0%EE%EC%BF%F6%CE&Address=%C9%CF%BA%A3%CA%D0%BA%E7%BF%DA%C7%F8%B6%AB%B3%A4%D6%CE%C2%B7685%C5%AA3%BA%C5&ZipCode=200080&Mobile=18616514026&Phone=&Email=boyinyou%40hot . . . KS_Order表已经重新使用新的9.5的数据库的表导入了一次,可是还是显示字段太小。 劳烦管理员出马了,万分感谢 |
|
支持(0) | 反对(0) 顶端 底部 |
支持(0) | 反对(0) 顶端 底部 |
支持(0) | 反对(0) 顶端 底部 |
支持(0) | 反对(0) 顶端 底部 |
支持(0) | 反对(0) 顶端 底部 |
打开shop/shoppingcart.asp看看,你的147 行代码是不是这样 if KS.ChkClng(RS("Istype"))<>KS.ChkClng(ks.g("istype")) then 点评 共 1 条boyinhot 是的,完全一样,已经打过补丁升级过数据库 威望+1 |
|
支持(0) | 反对(0) 顶端 底部 |
支持(0) | 反对(0) 顶端 底部 |
打开shop/shoppingcart.asp 找到 strsql="select I.ID,I.Title,I.FreeShipping,I.WholesaleNum,I.WholesalePrice,I.Price,I.Price_Member,I.IsDiscount,I.TotalNum,I.PhotoUrl,I.Unit,I.IsLimitBuy,I.LimitBuyPrice,I.LimitBuyAmount,i.istype,L.LimitBuyBeginTime,L.LimitBuyEndTime,I.MemberNum,I.VisitorNum,I.ArrGroupID,I.Tid,I.Fname,C.istype,C.Attr,C.Amount,C.CartID,C.AttrID,C.ProID,i.Score from (KS_Product I Inner join KS_ShoppingCart c on i.id=c.proid) Left Join KS_ShopLimitBuy L On I.LimitBuyTaskID=L.Id where i.deltf=0 and c.flag=0 and c.username='" & GetUserID & "' order by I.IsChangedBuy,I.ID" 改成 strsql="select I.ID,I.Title,I.FreeShipping,I.WholesaleNum,I.WholesalePrice,I.Price,I.Price_Member,I.IsDiscount,I.TotalNum,I.PhotoUrl,I.Unit,I.IsLimitBuy,I.LimitBuyPrice,I.LimitBuyAmount,i.istype,L.LimitBuyBeginTime,L.LimitBuyEndTime,I.MemberNum,I.VisitorNum,I.ArrGroupID,I.Tid,I.Fname,C.Attr,C.Amount,C.CartID,C.AttrID,C.ProID,i.Score from (KS_Product I Inner join KS_ShoppingCart c on i.id=c.proid) Left Join KS_ShopLimitBuy L On I.LimitBuyTaskID=L.Id where i.deltf=0 and c.flag=0 and c.username='" & GetUserID & "' order by I.IsChangedBuy,I.ID" 点评 共 2 条说得很好:5.0 ★★★★★ |
|
支持(0) | 反对(0) 顶端 底部 |
支持(0) | 反对(0) 顶端 底部 |
<上一主题 | 下一主题 > |