Empire cms를 7.0으로 업그레이드한 후 '필드 목록'에서 알 수 없는 열 '체크됨' 오류가 발생하면 어떻게 해야 하나요?
"Empire cms tutorial"을 공부하는 것이 좋습니다
문제 설명:
Imperial cms가 6.6에서 Empire cms 7.0으로 업그레이드되었습니다. 쭉 정상이었는데 백그라운드에 들어가서 클릭을 해보니. 관리 정보가 나타났어요
Unknown column 'checked' in 'field list' select id,classid,titleurl,groupid,newspath,filename,checked,isqf,havehtml,istop,isgood,firsttitle,ismember,userid,username,plnum,totaldown,onclick,newstime,truetime,lastdotime,titlepic,title from ***_ecms_movie order by id desc limit 0,100
문제 원인:
프롬프트는 체크된 필드가 존재하지 않는다는 의미여야 합니다.
정보 목록 템플릿을 직접 작성해서 이런 일이 일어났습니다
이 파일은 Empire CMS로 업그레이드할 수 없어서 이전에 존재했던 체크 필드가 제거되지 않았습니다
문제 해결 방법:
Open/e /data/html/list/alllistinfo_movie.php
아마도 9행에서 다음 SQL을 찾으세요
$query="select id,classid,titleurl,groupid,newspath,filename,checked,isqf,havehtml,istop,isgood,firsttitle,ismember,userid,username,plnum,totaldown,onclick,newstime,truetime,lastdotime,titlepic,title from {$dbtbpre}ecms_".$tbname.$where." order by ".$doorder." limit $offset,$line";
다음으로 변경하세요
$query="select id,classid,titleurl,groupid,newspath,filename,isqf,havehtml,istop,isgood,firsttitle,ismember,userid,username,plnum,totaldown,onclick,newstime,truetime,lastdotime,titlepic,title from {$dbtbpre}ecms_".$tbname.$where." order by ".$doorder." limit $offset,$line";
덮어쓰고 업로드하세요
위 내용은 Empire CMS를 7.0으로 업그레이드할 때 알 수 없는 오류에 대한 해결 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!