묻고답하기

안돼~~~!!!!!

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 남기남
이대협 xe로제작한 홈페이지가 갑자기 안됩니다.문제해결좀해주세요 [1] 2009.07.30 by 코리아선비
감람석 자꾸 성인사이트가 뜹니다.. 도와주세요 [10] 2009.07.30 by 코리아선비
요리조아 error 404사 뜸니다. 무엇이 문제 인가요? [1] 2009.07.30 by MX
justsmile 글쓰기 버튼 누르면 글쓰기 페이지가 새창에서 뜨게 하고 싶습니다 [1] 2009.07.30 by MX
교육스타 제로보드 폴더 중 files> cache 내의 삭제가능파일 문의 [1] 2009.07.30 by SMaker
Gary189 html 에서 제로보드 php 변수 사용할 수 있나요? [1] 2009.07.30 by SMaker
엘잭슨 제 홈페이지 업로드 창이 뜨지 않습니다.  
나다박지성 마우스 올라왔을 때 파일이름 안나오게 하는 방법. 제발 부탁드립니다 [2] 2009.07.30 by 나다박지성
비향 홈페이지 옆에 보면...꼭 답변 부탁해요 [2] 2009.07.30 by HolyJohn
박민수992 같이 웹사이트 (포털) 구축해 보실분 모집합니다. [1] 2009.07.30 by HolyJohn
김씨 마이그레이션시 절대 경로....후 [1] 2009.07.30 by 김씨
왜만지냐 게시판에 있는글을 텍스타일로 가져갈순 없나요?  
닥다리 파일첨부시 오류.. [1] file 2009.07.30 by 백성찬
꿈꾸는@달 에디터에서 xe 기본 스킨을 쓰면 클릭시 늘어나는 현상  
뷰티 로그인이 한 번에 되지 않습니다. [1] 2009.07.30 by 분홍곰
제보공부중 제로보드 공식페이지와 같이 첨부파일 표시방법 [1] file 2009.07.30 by 백성찬
박충기272 홈페이지 메뉴와 메뉴사이 이동  
이영걸 게시판 갤러리형에서 썸네일보기 관련 질문이요... [2] 2009.07.30 by 11월의비
분홍곰 회원 ID / 비밀번호 찾기를 누르면 나오는 오류 메시지 [8] file 2009.07.30 by 백성찬
이광우315 게시판이미지 질문입니다. 꼭 답변 부탁해요 file  
overimim 컴퓨터 전공책 팔아요  
로그인폼 일반 페이지에 로그인폼 삽입하기에 대한 질문 [5] 2009.07.30 by 로그인폼
레테123 최근게시글과 페이지 기본 게시판 문의요^^ [3] file 2009.07.30 by 코리아선비
오스카 확장변끼리의 합계... 다시 질문드립니다..^^ (이런건 쇼핑몰 수준인가요?)  
youhak ㅠ0ㅠ 한국정보진흥원에서 전화받았는데요.. 회원가입때 [2] 2009.07.30 by 이.카.루.스
썰사장님 게시판을 합칠때 등록 날짜순으로 정렬 할 수 없나요.?  
대략8단 게시판 글자 색에 관한 질문요~ [2] 2009.07.30 by 대략8단
양태규 1.2.4 로 업그레이드 할 때, 기존 게시판에 있던 글이 없다고 나옵니다.  
사용자 회원 가입시 이메일 주소 중복가능하게 하려면..  
mijjang 쇼핑카트와 주문