묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
php 플래시 카운터에서 전체값이 안나오네요...
2003.02.12 19:55
[웹프로그래밍]에 질문을 올렸는데 아무리 기다려도 답변이 올라오지 않아서 이곳에 다시 올려봅니다.
- 개인서버 - w3ip 서비스 이용
- 아래 카운터의 적용모습을 보시려면 이리로 오셔서 보세요. http://genii.w3ip.com/
질문 내용 :
해피CGI에서 플래시카운터를 가져다 설치를 했습니다. 그런데, 접속인원에서 전체통계(TOTAL)가 나오지 않고 비어있네요.
소스를 보니 약간 이상한 것도 같고, 그렇다고 고칠 실력은 안되고....
실력있는 분의 도움을 기다립니다.
붙일땐 이렇게 붙였습니다.
<embed src="counter/count.swf?cgi=counter/count.php&" type="application/x-shockwave-flash" width="150" height="70" wmode="transparent"></embed>
------------------------------------
아래는 coung.php의 소스입니다.
<?
###############################################################
##### 플래쉬 카운터 ...
##### 2001년 9월 28일 ...
###############################################################
##### 함수 #####
function result_check($str,$msg) {
if (empty($str)) {
echo "<script> alert('{$msg}'); history.go(-1); </script>";
exit;
}
}
# 파일형식
# 총카운터수:오늘방문자:어제방문자:날짜
##### 환경설정 ######
$filename = "count.txt"; # 카운터 누적데이타 파일..
$cookie = "dogfoot_cookie"; # 사용된 쿠키명..
$lifetime = mktime(12,01,01,11,12,2010); # 쿠키유효기간
#### 파일권한 및 유무 체크 #######
result_check(file_exists ($filename),"카운터정보 파일이 존재하지 않습니다");
result_check(is_writeable ($filename),"카운터정보 파일의 쓰기 권한이 없습니다");
result_check(is_readable($filename),"카운터정보 파일의 읽기 권한이 없습니다");
$fp = fopen ($filename, "r");
result_check($fp,"파일을 읽을수 없습니다");
$info_data = fread($fp,1024);
$info_array = split(":",$info_data);
if (count($info_array) != 4) { // 파일의 내용이 없거나 형식이 일치하지 않아서 초기화시킴..
$total = "000001";
$today = "000000";
$yesday = "000000";
$regdate = date("Y-m-d");
} else {
$total = sprintf("%06d",($info_array[0] + 1));
$today = $info_array[1];
$yesday = sprintf("%06d",$info_array[2]);
$regdate = $info_array[3];
}
fclose($fp);
# 파일에 쓰기
$fp = fopen ($filename, "w");
result_check($fp,"파일을 읽을수 없습니다");
if ($regdate == date("Y-m-d")) $today = sprintf("%06d", ($today + 1));
else {
$yesday = $today;
$today = 1;
}
$write_data = "{$total}:{$today}:{$yesday}:" . date("Y-m-d");
fputs($fp,$write_data);
fclose($fp);
if ($HTTP_COOKIE_VARS[$cookie]) $youcount = $HTTP_COOKIE_VARS[$cookie] + 1;
else $youcount = 1;
$youcount = sprintf("%06d",$youcount );
setcookie("{$cookie}",$youcount,$lifetime,"/");
echo "<embed src='./count.swf?total={$total}&yes={$yesday}&today={$today}&you={$youcount}&load=end&' type='application/x-shockwave-flash' width='150' height='70' bgcolor='#E4E4E4'></embed>";
?>
count.php 소스 끝. --------------
어디를 고쳐야 할까요? 도와주세요!
- 개인서버 - w3ip 서비스 이용
- 아래 카운터의 적용모습을 보시려면 이리로 오셔서 보세요. http://genii.w3ip.com/
질문 내용 :
해피CGI에서 플래시카운터를 가져다 설치를 했습니다. 그런데, 접속인원에서 전체통계(TOTAL)가 나오지 않고 비어있네요.
소스를 보니 약간 이상한 것도 같고, 그렇다고 고칠 실력은 안되고....
실력있는 분의 도움을 기다립니다.
붙일땐 이렇게 붙였습니다.
<embed src="counter/count.swf?cgi=counter/count.php&" type="application/x-shockwave-flash" width="150" height="70" wmode="transparent"></embed>
------------------------------------
아래는 coung.php의 소스입니다.
<?
###############################################################
##### 플래쉬 카운터 ...
##### 2001년 9월 28일 ...
###############################################################
##### 함수 #####
function result_check($str,$msg) {
if (empty($str)) {
echo "<script> alert('{$msg}'); history.go(-1); </script>";
exit;
}
}
# 파일형식
# 총카운터수:오늘방문자:어제방문자:날짜
##### 환경설정 ######
$filename = "count.txt"; # 카운터 누적데이타 파일..
$cookie = "dogfoot_cookie"; # 사용된 쿠키명..
$lifetime = mktime(12,01,01,11,12,2010); # 쿠키유효기간
#### 파일권한 및 유무 체크 #######
result_check(file_exists ($filename),"카운터정보 파일이 존재하지 않습니다");
result_check(is_writeable ($filename),"카운터정보 파일의 쓰기 권한이 없습니다");
result_check(is_readable($filename),"카운터정보 파일의 읽기 권한이 없습니다");
$fp = fopen ($filename, "r");
result_check($fp,"파일을 읽을수 없습니다");
$info_data = fread($fp,1024);
$info_array = split(":",$info_data);
if (count($info_array) != 4) { // 파일의 내용이 없거나 형식이 일치하지 않아서 초기화시킴..
$total = "000001";
$today = "000000";
$yesday = "000000";
$regdate = date("Y-m-d");
} else {
$total = sprintf("%06d",($info_array[0] + 1));
$today = $info_array[1];
$yesday = sprintf("%06d",$info_array[2]);
$regdate = $info_array[3];
}
fclose($fp);
# 파일에 쓰기
$fp = fopen ($filename, "w");
result_check($fp,"파일을 읽을수 없습니다");
if ($regdate == date("Y-m-d")) $today = sprintf("%06d", ($today + 1));
else {
$yesday = $today;
$today = 1;
}
$write_data = "{$total}:{$today}:{$yesday}:" . date("Y-m-d");
fputs($fp,$write_data);
fclose($fp);
if ($HTTP_COOKIE_VARS[$cookie]) $youcount = $HTTP_COOKIE_VARS[$cookie] + 1;
else $youcount = 1;
$youcount = sprintf("%06d",$youcount );
setcookie("{$cookie}",$youcount,$lifetime,"/");
echo "<embed src='./count.swf?total={$total}&yes={$yesday}&today={$today}&you={$youcount}&load=end&' type='application/x-shockwave-flash' width='150' height='70' bgcolor='#E4E4E4'></embed>";
?>
count.php 소스 끝. --------------
어디를 고쳐야 할까요? 도와주세요!