묻고답하기

안돼~~~!!!!!

2010.06.28 20:39

M31

http://www.xpressengine.com/18969787 에 나온대로 했는데


홈페이지에 들어가보니


$args->regdate = date("YmdHis"); $args->user_agent = substr ($_SERVER['HTTP_USER_AGENT'], 0, 250); $args->site_srl = $site_srl; return executeQuery('counter.insertCounterLog', $args); } /** * @brief unique visitor 등록 **/ function insertUniqueVisitor($site_srl=0) { if($site_srl) { $args->regdate = '0'; $args->site_srl = $site_srl; $output = executeQuery('counter.updateSiteCounterUnique', $args); $args->regdate = date('Ymd'); $output = executeQuery('counter.updateSiteCounterUnique', $args); } else { $args->regdate = '0'; $output = executeQuery('counter.updateCounterUnique', $args); $args->regdate = date('Ymd'); $output = executeQuery('counter.updateCounterUnique', $args); } } /** * @brief pageview 등록 **/ function insertPageView($site_srl=0) { if($site_srl) { $args->regdate = '0'; $args->site_srl = $site_srl; executeQuery('counter.updateSiteCounterPageview', $args); $args->regdate = date('Ymd'); executeQuery('counter.updateSiteCounterPageview', $args); } else { $args->regdate = '0'; executeQuery('counter.updateCounterPageview', $args); $args->regdate = date('Ymd'); executeQuery('counter.updateCounterPageview', $args); } } /** * @brief 전체 카운터 status 추가 **/ function insertTotalStatus($site_srl=0) { $args->regdate = 0; if($site_srl) { $args->site_srl = $site_srl; executeQuery('counter.insertSiteTodayStatus', $args); } else { executeQuery('counter.insertTodayStatus', $args); } } /** * @brief 오늘자 카운터 status 추가 **/ function insertTodayStatus($regdate = 0, $site_srl=0) { if($regdate) $args->regdate = $regdate; else $args->regdate = date("Ymd"); if($site_srl) { $args->site_srl = $site_srl; $query_id = 'counter.insertSiteTodayStatus'; $u_args->site_srl = $site_srl; ///< 일별 row입력시 전체 row (regdate=0)도 같이 입력 시도 executeQuery($query_id, $u_args); } else { $query_id = 'counter.insertTodayStatus'; executeQuery($query_id); ///< 일별 row입력시 전체 row (regdate=0)도 같이 입력 시도 } $output = executeQuery($query_id, $args); // 로그 등록 $this->insertLog($site_srl); // unique 및 pageview 등록 $this->insertUniqueVisitor($site_srl); } /** * @brief 특정 가상 사이트의 카운터 로그 삭제 **/ function deleteSiteCounterLogs($site_srl) { $args->site_srl = $site_srl; executeQuery('counter.deleteSiteCounter',$args); executeQuery('counter.deleteSiteCounterLog',$args); } } ?> 
Warning: Cannot modify header information - headers already sent by (output started at /var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/modules/counter/counter.controller.php:1) in/var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/classes/display/DisplayHandler.class.php on line 151

Warning: Cannot modify header information - headers already sent by (output started at /var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/modules/counter/counter.controller.php:1) in/var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/classes/display/DisplayHandler.class.php on line 448

Warning: Cannot modify header information - headers already sent by (output started at /var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/modules/counter/counter.controller.php:1) in/var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/classes/display/DisplayHandler.class.php on line 449

Warning: Cannot modify header information - headers already sent by (output started at /var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/modules/counter/counter.controller.php:1) in/var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/classes/display/DisplayHandler.class.php on line 450

Warning: Cannot modify header information - headers already sent by (output started at /var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/modules/counter/counter.controller.php:1) in/var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/classes/display/DisplayHandler.class.php on line 451

Warning: Cannot modify header information - headers already sent by (output started at /var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/modules/counter/counter.controller.php:1) in/var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/classes/display/DisplayHandler.class.php on line 452

Warning: Cannot modify header information - headers already sent by (output started at /var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/modules/counter/counter.controller.php:1) in/var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/classes/display/DisplayHandler.class.php on line 453

Warning: Cannot modify header information - headers already sent by (output started at /var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/modules/counter/counter.controller.php:1) in/var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/classes/display/DisplayHandler.class.php on line 161

Warning: Cannot modify header information - headers already sent by (output started at /var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/modules/counter/counter.controller.php:1) in/var/www/domain/jyyoun.koreahosting.co.kr/yucklab_wo_tc/htdocs/xe/classes/display/DisplayHandler.class.php on line 161


라고 오류가 뜨네요... 원래대로 복구해도 없어지지도 않고... 어떡하죠?

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
이광우315 게시판이미지 질문입니다. 꼭 답변 부탁해요 file  
분홍곰 회원 ID / 비밀번호 찾기를 누르면 나오는 오류 메시지 [8] file 2009.07.30 by 백성찬
이영걸 게시판 갤러리형에서 썸네일보기 관련 질문이요... [2] 2009.07.30 by 11월의비
박충기272 홈페이지 메뉴와 메뉴사이 이동  
제보공부중 제로보드 공식페이지와 같이 첨부파일 표시방법 [1] file 2009.07.30 by 백성찬
뷰티 로그인이 한 번에 되지 않습니다. [1] 2009.07.30 by 분홍곰
꿈꾸는@달 에디터에서 xe 기본 스킨을 쓰면 클릭시 늘어나는 현상  
닥다리 파일첨부시 오류.. [1] file 2009.07.30 by 백성찬
왜만지냐 게시판에 있는글을 텍스타일로 가져갈순 없나요?  
김씨 마이그레이션시 절대 경로....후 [1] 2009.07.30 by 김씨
박민수992 같이 웹사이트 (포털) 구축해 보실분 모집합니다. [1] 2009.07.30 by HolyJohn
비향 홈페이지 옆에 보면...꼭 답변 부탁해요 [2] 2009.07.30 by HolyJohn
나다박지성 마우스 올라왔을 때 파일이름 안나오게 하는 방법. 제발 부탁드립니다 [2] 2009.07.30 by 나다박지성
엘잭슨 제 홈페이지 업로드 창이 뜨지 않습니다.  
Gary189 html 에서 제로보드 php 변수 사용할 수 있나요? [1] 2009.07.30 by SMaker
교육스타 제로보드 폴더 중 files> cache 내의 삭제가능파일 문의 [1] 2009.07.30 by SMaker
justsmile 글쓰기 버튼 누르면 글쓰기 페이지가 새창에서 뜨게 하고 싶습니다 [1] 2009.07.30 by MX
요리조아 error 404사 뜸니다. 무엇이 문제 인가요? [1] 2009.07.30 by MX
감람석 자꾸 성인사이트가 뜹니다.. 도와주세요 [10] 2009.07.30 by 코리아선비
이대협 xe로제작한 홈페이지가 갑자기 안됩니다.문제해결좀해주세요 [1] 2009.07.30 by 코리아선비
atti 최근 문서 출력시에 제목이 가운데 정렬되는데 왼쪽정렬로 바꿀수 있나요? [1] 2009.07.30 by 코리아선비
gguyy 언어별 페이지 에디터오류에 관한 질문입니다. [2] 2009.07.30 by gguyy
조영훈479 최근게시물에서 링크 되는 게시판이름 넣는 방법있나요? 몇일째 고생중입니다. ㅠ [2] 2009.07.30 by 뮤직맨
유샤인 엑스 버젼 1.2.4로 업데이트하고 난 후 부터는 관리자에게 보내져 오는 이메일에 적혀지는 문서링크가 도메인 주소 없이 옵니다.  
크하 메뉴 마우스 오버시 말풍선 삭제할수 없을까요?  
어쭈구리メ 급합니다 ㅠㅠ file  
지천 로그인 구현? [1] file 2009.07.30 by 실력부족
ㅇㄻ 게시판에 번호가 너무 넓게나오는데 제목위주로 못바꾸나요? [2] 2009.07.29 by 실력부족
몰라서 익스플러르8 원본보기에서 수정은? [1] 2009.07.29 by 실력부족
비적군 헤더풋더가 있는게시판을 최근이미지 페이지로 만들면 오류가남.. [1] 2009.07.29 by 실력부족