diff --git a/shop/settleresult.php b/shop/settleresult.php
deleted file mode 100644
index 3df3c43a9..000000000
--- a/shop/settleresult.php
+++ /dev/null
@@ -1,98 +0,0 @@
-
-include_once('./_common.php');
-
-$html_title = '결제 결과';
-include_once('./_head.php');
-
-if (get_session('ss_temp_uq_id') != $uq_id)
- alert('정상적인 방법으로 확인하실 수 있습니다.', G4_URL);
-
-
-$sql = " select * from {$g4['yc4_card_history_table']} where uq_id = '$uq_id' ";
-$cd = sql_fetch($sql);
-if ($cd['cd_id'] == "")
- alert('값이 제대로 전달되지 않았습니다.');
-
-/*
-// 포인트 결제를 했다면 실제 포인트 결제한 것으로 수정합니다.
-$sql = " select od_id, uq_id, od_receipt_point, od_temp_point from $g4[yc4_order_table] where uq_id = '$uq_id' ";
-$row = sql_fetch($sql);
-if ($row[od_receipt_point] == 0 && $row[od_temp_point] != 0)
-{
- sql_query(" update $g4[yc4_order_table] set od_receipt_point = od_temp_point where uq_id = '$uq_id' ");
- insert_point($member[mb_id], (-1) * $row[od_temp_point], "주문번호:$row[od_id] 결제", "@order", $member[mb_id], "$row[od_id],$row[uq_id]");
-}
-*/
-
-$sql = " select * from {$g4['yc4_order_table']} where uq_id = '$uq_id' ";
-$od = sql_fetch($sql);
-
-// 이곳에서 정상 결제되었다는 메일도 같이 발송합니다.
-@extract($od);
-$tmp_uq_id = $uq_id;
-
-if ($od['od_settle_case'] == '가상계좌')
- $od_receipt_bank = $od_temp_bank;
-
-include_once("ordermail1.inc.php");
-include_once("ordermail2.inc.php");
-
-if ($od['od_settle_case'] == '가상계좌')
-{
- $msg_settle_amount = '결제하실 금액';
- $settle_amount = $od['od_temp_bank'];
- $msg_trade_time = '처리일시';
-}
-else
-{
- $msg_settle_amount = '결제금액';
- $settle_amount = $cd['cd_amount'];
- $msg_trade_time = '결제일시';
-}
-?>
-
-
- -
| =$od['od_settle_case']?> 결제 내역 | ||||||||||||
-
| ||||||||||||
- '>
-
-
-
-include_once('./_tail.php');
-?>
\ No newline at end of file