Black 반투명 BG!!

쇼핑몰 솔루션 문의

이전

[답변]문의사항 답변드립니다.

2013-12-27 | 겟몰 | 143

안녕하세요 겟몰입니다.

 

고객님의 사용하는 템플릿 혹은 개별디자인에 따라

 

상품리스트페이지 : /front/productlist.php,

 

상품상세보기페이지 : /front/productdetail.php,

 

에서 분기 하게 되며 특히 템플릿으로 동작할경우 저희 역시 추적해 봐야 확인할 수 있습니다.

 

해당 담당자분이라 할지라도 다 기억하고 있지는 못하며,

 

저희 역시 추적해봐야 하는 부분에 있습니다.

 

해당 작업역시 저희쪽에서도 시간이 투자되어야 하는 작업이며,

 

해당 페이지내에서 인클루드 되는 모든 영역을 확인해야 하는 부분이 있으므로

 

이는 작업에 따라 커스터마이징하는 시간과 비슷한 시간이 발생될 경우도 있습니다.

 

그러므로 해당 부분의 경우 상세한 부분을 확인하여 드릴 수 없으므로 이점 양해 바랍니다.

 

감사합니다.

 

 

 

'유한종'님이 쓰신글 ------------------------------------ >해당 파일에서 직접 추적해 보셔야 합니다. >그걸알면 문의를 했을까? 하는 생각은 안드십니까? >말이 어려우면 소스를 넣어주겠습니다. 어디에 있는지 알려주세요... > > ><!--? -->$Dir=\"../\"; >include_once($Dir.\"lib/init.php\"); >include_once($Dir.\"lib/lib.php\"); >//include_once($Dir.\"lib/cache_product.php\"); >include_once($Dir.\"lib/shopdata.php\"); >include_once($Dir.\"lib/ext/product_func.php\"); >include_once($Dir.\"lib/ext/member_func.php\"); > >$rcode=$_REQUEST[\"code\"]; > >if(strlen($rcode)==0) { > Header(\"Location:\".$Dir.MainDir.\"main.php\"); > exit; >} > >$selfcodefont_start = \"\"; //진열코드 폰트 시작 >$selfcodefont_end = \"\"; //진열코드 폰트 끝 > >$code = \'\'; >$likecode=\'\'; >for($i=0;$i<4;$i++){ > $tcode = substr($rcode,$i*3,3); > if(strlen($tcode) != 3){ > $tcode = \'000\'; > }else{ > $likecode.=$tcode; > } > ${\'code\'.chr(65+$i)} = $tcode; > $code.=$tcode; >} > > >/* >function getCodeLoc($code,$color1=\"9E9E9E\",$color2=\"9E9E9E\") { > global $_ShopInfo, $Dir; > $code_loc = \" > \"; > $sql = \"SELECT codeA,codeB,codeC,codeD,code_name,type FROM tblproductcode \"; > $sql.= \"WHERE codeA=\'\".substr($code,0,3).\"\' \"; > if(substr($code,3,3)!=\"000\") { > $sql.= \"AND (codeB=\'\".substr($code,3,3).\"\' OR codeB=\'000\') \"; > if(substr($code,6,3)!=\"000\") { > $sql.= \"AND (codeC=\'\".substr($code,6,3).\"\' OR codeC=\'000\') \"; > if(substr($code,9,3)!=\"000\") { > $sql.= \"AND (codeD=\'\".substr($code,9,3).\"\' OR codeD=\'000\') \"; > } else { > $sql.= \"AND codeD=\'000\' \"; > } > } else { > $sql.= \"AND codeC=\'000\' \"; > } > } else { > $sql.= \"AND codeB=\'000\' AND codeC=\'000\' \"; > } > $sql.= \"ORDER BY codeA,codeB,codeC,codeD ASC \"; > $result=mysql_query($sql,get_db_conn()); > $i=0; > while($row=mysql_fetch_object($result)) { > $tmpcode=$row->codeA.$row->codeB.$row->codeC.$row->codeD; > if($i>0) $code_loc.= \" > \"; > if($code==$tmpcode) { > $code_loc.=\"\".$row->code_name.\"\"; > } else { > $code_loc.=\"\".$row->code_name.\"\"; > } > $code_loc.= $_tmp; > $i++; > } > mysql_free_result($result); > return $code_loc; >} >*/ > > > >function getCodeLoc($code,$color1=\"9E9E9E\",$color2=\"9E9E9E\") { > global $_ShopInfo, $Dir,$code; > $naviitem = array(); > array_push($naviitem,\" \"); > //> > > for($i=0;$i<4;$i++){ > $tmp = array(); > > $getsub = ($GLOBALS[\'code\'.chr(65+$i)] == \'000\'); > $tmp = getCategoryItems(substr($code,0,$i*3),true); > if(is_array($tmp) && count($tmp) > 0 && count($tmp[\'items\']) > 0){ > $str = \' \'; > array_push($naviitem,$str); > } > if($getsub) break; > } > return implode(\' >\',$naviitem); >} > > > >$_cdata=\"\"; >$sql = \"SELECT * FROM tblproductcode WHERE codeA=\'\".$codeA.\"\' AND codeB=\'\".$codeB.\"\' \"; >$sql.= \"AND codeC=\'\".$codeC.\"\' AND codeD=\'\".$codeD.\"\' \"; >$result=mysql_query($sql,get_db_conn()); >if($row=mysql_fetch_object($result)) { > //접근가능권한그룹 체크 > if($row->group_code==\"NO\") { > echo \"\";exit; > } > if(strlen($_ShopInfo->getMemid())==0) { > if(strlen($row->group_code)>0) { > echo \"\";exit; > } > } else { > //if($row->group_code!=\"ALL\" && strlen($row->group_code)>0 && $row->group_code!=$_ShopInfo->getMemgroup()) { > if(strlen($row->group_code)>0 && strpos($row->group_code,$_ShopInfo->getMemgroup())===false) { //그룹회원만 접근 > echo \"\";exit; > } > } > $_cdata=$row; > > // 미리보기 > if( @!preg_match( \'U\', $_cdata->list_type ) AND $preview===true ) { > $_cdata->list_type = $_cdata->list_type.\"U\"; > } > >} else { > echo \"\";exit; >} >mysql_free_result($result); > > >$sort=$_REQUEST[\"sort\"]; >$listnum=(int)$_REQUEST[\"listnum\"]; > >if($listnum<=0) $listnum=$_data->prlist_num; > >//리스트 세팅 >$setup[page_num] = 10; >$setup[list_num] = $listnum; > >$block=$_REQUEST[\"block\"]; >$gotopage=$_REQUEST[\"gotopage\"]; > >if ($block != \"\") { > $nowblock = $block; > $curpage = $block * $setup[page_num] + $gotopage; >} else { > $nowblock = 0; >} > >if (($gotopage == \"\") || ($gotopage == 0)) { > $gotopage = 1; >} > >$sql = \"SELECT codeA, codeB, codeC, codeD FROM tblproductcode \"; >if(strlen($_ShopInfo->getMemid())==0) { > $sql.= \"WHERE group_code!=\'\' \"; >} else { > //$sql.= \"WHERE group_code!=\'\".$_ShopInfo->getMemgroup().\"\' AND group_code!=\'ALL\' AND group_code!=\'\' \"; > $sql.= \"WHERE group_code NOT LIKE \'%\".$_ShopInfo->getMemgroup().\"%\' AND group_code!=\'\' \"; >} >$result=mysql_query($sql,get_db_conn()); >$not_qry=\"\"; >while($row=mysql_fetch_object($result)) { > $tmpcode=$row->codeA; > if($row->codeB!=\"000\") $tmpcode.=$row->codeB; > if($row->codeC!=\"000\") $tmpcode.=$row->codeC; > if($row->codeD!=\"000\") $tmpcode.=$row->codeD; > $not_qry.= \"AND a.productcode NOT LIKE \'\".$tmpcode.\"%\' \"; >} >mysql_free_result($result); > > >$qry = \"WHERE 1=1 \"; >if(eregi(\"T\",$_cdata->type)) { //가상분류 > $sql = \"SELECT productcode FROM tblproducttheme WHERE code LIKE \'\".$likecode.\"%\' \"; > if(strlen($_cdata->sort)==0 || $_cdata->sort==\"date\" || $_cdata->sort==\"date2\") { > $sql.= \"ORDER BY date DESC \"; > } > $result=mysql_query($sql,get_db_conn()); > $t_prcode=\"\"; > while($row=mysql_fetch_object($result)) { > $t_prcode.=$row->productcode.\",\"; > $i++; > } > mysql_free_result($result); > > //추가 카테고리가 있는지 체크 > $sql = \"SELECT productcode FROM tblcategorycode WHERE categorycode LIKE \'\".$likecode.\"%\' \"; > $result=mysql_query($sql,get_db_conn()); > while($row=mysql_fetch_object($result)) { > $t_prcode.=$row->productcode.\",\"; > $i++; > } > mysql_free_result($result); > //# 추가 카테고리가 있는지 체크 > > $t_prcode=substr($t_prcode,0,-1); > $t_prcode=ereg_replace(\',\',\'\\\',\\\'\',$t_prcode); > $qry.= \"AND a.productcode IN (\'\".$t_prcode.\"\') \"; > > $add_query=\"&code=\".$code; >} else { //일반분류 > //$qry.= \"AND a.productcode LIKE \'\".$likecode.\"%\' \"; > > //추가 카테고리가 있는지 체크 > $sql = \"SELECT productcode FROM tblcategorycode WHERE categorycode LIKE \'\".$likecode.\"%\' \"; > > $result=mysql_query($sql,get_db_conn()); > $prcode=\"\"; > while($row=mysql_fetch_object($result)) { > $prcode.=$row->productcode.\",\"; > $i++; > } > mysql_free_result($result); > $prcode=substr($prcode,0,-1); > $prcode=ereg_replace(\',\',\'\\\',\\\'\',$prcode); > $qry.= \"AND a.productcode IN (\'\".$prcode.\"\') \"; > $add_query=\"&code=\".$code; >} >$qry.=\"AND a.display=\'Y\' \"; > > >//현재위치 >$codenavi=getCodeLoc($code); > > >?> > > > > ><?=$_data->shopname.\" [\".$_cdata->code_name.\"]\"?> > ><!--META http-equiv=\"X-UA-Compatible\" content=\"IE=5\" /--> > >shopdescription)>0?$_data->shopdescription:$_data->shoptitle)?>\"> >shopkeyword?>\"> > > ><!--?include($Dir.\"lib/style.php\")?--> > > > >

layoutdata[\"MOUSEKEY\"],0,1)==\"Y\"?\" oncontextmenu=\\\"return false;\\\"\":\"\")?><!--?=(substr($_data--->layoutdata[\"MOUSEKEY\"],1,1)==\"Y\"?\" ondragstart=\\\"return false;\\\" onselectstart=\\\"return false;\\\"\":\"\")?> leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\"><!--?=(substr($_data--->layoutdata[\"MOUSEKEY\"],2,1)==\"Y\"?\"\":\"\")?> > ><!--? include ($Dir.MainDir.$_data--->menu_type.\".php\"); >?> > > > > > >\"> >\"> >\"> >\"> >\"> >\"> > > >\"> > > > >

><!--? --> if(strlen($_cdata->list_type)==5) { > include($Dir.TempletDir.\"product/list_\".$_cdata->list_type.\".php\"); > } else if (strlen($_cdata->list_type)==6 && substr($_cdata->list_type,5,6)==\"U\") { > //leftmenu : 적용여부 > $sql = \"SELECT leftmenu,body,code FROM \".$designnewpageTables.\" \"; > $sql.= \"WHERE type=\'prlist\' AND (code=\'\".$code.\"\' OR code=\'ALL\') AND leftmenu=\'Y\' \"; > $sql.= \"ORDER BY code ASC LIMIT 1 \"; > $result=mysql_query($sql,get_db_conn()); > $row=mysql_fetch_object($result); > $_ndata=$row; > mysql_free_result($result); > if($_ndata) { > $body=$_ndata->body; > $body=str_replace(\"[DIR]\",$Dir,$body); > include($Dir.TempletDir.\"product/list_U.php\"); > } else { > include($Dir.TempletDir.\"product/list_\".substr($_cdata->list_type,0,5).\".php\"); > } > } >?> >
> ><!--? include ($Dir.\"lib/bottom.php\") ?--> > >
> > > > ><!--? if($HTML_CACHE_EVENT==\"OK\") ob_end_flush(); ?--> > > > >인크로드 페이지는 다 찾았지만 어디에 있는지 알수가 없네요 > > > > > > > ------------------------------------

댓글작성

· 작성자
· 비밀번호
· 내용
TOP

(주)오브제인터랙티브. 대표 김수영.사업자등록번호 504-81-83972.
통신판매업신고 2018-대구수성-0281
계좌정보 : 국민은행 632301-04-135032 (주)오브제인터랙티브
서울특별시 강남구 테헤란로 52길 17(역삼동 ES타워 13층)
대구광역시 수성구 알파시티1로 170 SW융합기술지원센터 206호
전화 TEL.1544-8992 개인정보관리책임. 김병욱
(webmaster@getmall.co.kr) Copyright(c) 2009 By OBJET Crop. All Rights Reserved.

겟몰체험

고객 사례

겟몰 콜센터

1544-8992

체험