엑셀파일 쇼핑몰 상품가져오기 내보내기 적용시 오류 관련 문의드려요
본문
엑셀파일 쇼핑몰 상품가져오기 내보내기 적용시 오류 관련 문의드려요
엑셀파일 쇼핑몰 상품가져오기 내보내기
https://sir.kr/yc5_plugin/193#c_267
현재 영카트 5.3.2.5 버전 사용중.
올려주신 파일 업로드하고 상품 내보내기 하면
youngcart_data_2020-02-12.xml 파일 저장되는데
<b>Warning</b>: Invalid argument supplied for foreach() in <b>/home/hosting/alphamall277/public_html/lib/shop_xml.lib.php</b> on line <b>356</b>
위 경고멘트가 노출됩니다.
shop_xml.lib.php 파일 356번째줄에서 오류가 생긴나고 확인이 됩니다.
356번줄
// Yeah, lets add them
foreach ($attributes as $elementAttrName => $elementAttrText)
{
$this->writer->startAttribute($elementAttrName);
$this->writer->text($elementAttrText);
$this->writer->endAttribute();
}
워가 문제일까요?
도와주세요~
답변 1
foreach 문은 배열에 값이 없으면 오류가 납니다.
그 위에 줄에 아래 소스 추가해서 배열값이 넘어오는지 확인해보세요.
print_r($attributes); exit;
답변을 작성하시기 전에 로그인 해주세요.