[버그] 장바구니에 닮긴 내용이 확인되지 않을 때 이렇게 하세요.
짧은주소
- - 짧은주소: http://v2.eyoom.net/bbs/?t=2ZK 주소복사
본문
/www/eyoom/core/shop/cart.php 49라인 근처에서 사용하지 않는 mysql_fetch_array() 함수가 사용되어 있습니다. 이 부분을 sql_fetch_array로 변경하시면 됩니다.
for ($i=0; $row=mysql_fetch_array($result); $i++)
{
// 합계금액 계산
$sql = " select SUM(IF(io_type = 1, (io_price * ct_qty), ((ct_price + io_price) * ct_qty))) as price,
SUM(ct_point * ct_qty) as point,
SUM(ct_qty) as qty
from {$g5['g5_shop_cart_table']}
where it_id = '{$row['it_id']}'
and od_id = '$s_cart_id' ";
아래와 같이 변경하세요.
for ($i=0; $row=sql_fetch_array($result); $i++)
{
// 합계금액 계산
$sql = " select SUM(IF(io_type = 1, (io_price * ct_qty), ((ct_price + io_price) * ct_qty))) as price,
SUM(ct_point * ct_qty) as point,
SUM(ct_qty) as qty
from {$g5['g5_shop_cart_table']}
where it_id = '{$row['it_id']}'
and od_id = '$s_cart_id' ";
$sum = sql_fetch($sql);
좋아요!
Progress Bar 6%
번호 | 제목 | 글쓴이 | 날짜 | 뷰 | 추천 |
---|---|---|---|---|---|
공지 | 이윰넷 | 2015.03.02 | 2,075 | 0 | |
258 | red123 | 2017.05.11 | 867 | 0 | |
257 | 닭발은세개 | 2017.04.26 | 1,784 | 0 | |
256 | 웅이 | 2017.04.19 | 1,074 | 0 | |
255 | red123 | 2017.04.09 | 764 | 0 | |
254 | 오지9yo | 2017.03.23 | 1,164 | 0 | |
253 | 크롱크롱 | 2017.03.10 | 855 | 0 | |
252 | 크롱크롱 | 2017.02.03 | 977 | 0 | |
251 | 빛그림 | 2016.11.28 | 1,025 | 0 | |
250 | 플레이펌프 | 2016.09.13 | 1,228 | 0 | |
249 | 탱크 | 2016.09.01 | 1,341 | 0 | |
248 | 티보리 | 2016.08.23 | 1,144 | 0 | |
247 | 건강전도자 | 2016.08.12 | 4,557 | 0 | |
열람 | 온보씨 | 2016.07.21 | 1,420 | 0 | |
245 | 라피아 | 2016.07.14 | 1,404 | 0 | |
244 | 박스게임 | 2016.07.14 | 1,217 | 0 | |
243 | 티보리 | 2016.07.11 | 1,849 | 0 | |
242 | 크롱크롱 | 2016.06.27 | 1,291 | 0 | |
241 | 비즈팔 | 2016.06.21 | 1,017 | 0 | |
240 | 홍인 | 2016.06.14 | 1,886 | 0 |
댓글목록
등록된 댓글이 없습니다.