묻고답하기
Fatal error: ftp.class.php
2009.11.12 00:43
안녕하세요,
관리자의 settings 부분을 클릭을 하는데,
Fatal error: Maximum execution time of 30 seconds exceeded in /home/kcpcmor1/public_html/libs/ftp.class.php on line 474
line 은 473, 474, 475 부분에서 Fetel error 가 뜹니다.
다른 건 다 괜찮은데, 무슨 문제인지 아시는 분 계십니까?
버전은, 1.3.0 으로 업데이트를 했고요, 캐시파일재생성 까지 했는데도 setting 부분만 들어가지 못하네요 ㅡ.ㅡ;;
function ftp_ok()
{
$this->ftp_resp = "";
do {
$res = fgets($this->ftp_sock, 512);
$this->ftp_resp .= $res;
} while (substr($res, 3, 1) != " ");
$this->ftp_debug(str_replace("\r\n", "\n", $this->ftp_resp));
if (!ereg("^[123]", $this->ftp_resp)) {
return FALSE;
}
FTP 부분인거 같은데, 아시는 분, 부탁드립니다. *^^*
감사합니다.
http://www.bek.me/?document_srl=395681