서버변경후 문제 정보
서버변경후 문제본문
tgz로 압축해서 ssh로 압축풀고 db올렸는데 게시글 들어가면
해당 웹페이지를 사용할 수 없음
http://lizardking.hostple.net/bbs/board.php?bo_table=menu12&wr_id=367의 웹페이지가 일시적으로 다운되었거나 새 웹 주소로 완전히 이동했을 수 있습니다.
오류 코드: ERR_CONTENT_DECODING_FAILED
이렇게 뜨네요
오류 주소 : http://lizardking.hostple.net
해당 웹페이지를 사용할 수 없음
http://lizardking.hostple.net/bbs/board.php?bo_table=menu12&wr_id=367의 웹페이지가 일시적으로 다운되었거나 새 웹 주소로 완전히 이동했을 수 있습니다.
오류 코드: ERR_CONTENT_DECODING_FAILED
이렇게 뜨네요
오류 주소 : http://lizardking.hostple.net
댓글 전체
웹소스와 데이타베이스소스를 별개로 옮기는 것이 나을 것 같네요..
그리고 서버를 옮기셨으면 DB정보도 변경이 되었을 것 같네요..
먼저 dbconfig.php화일 내용부터 수정하시고... 다른 문제를 확인하심이..
그리고 서버를 옮기셨으면 DB정보도 변경이 되었을 것 같네요..
먼저 dbconfig.php화일 내용부터 수정하시고... 다른 문제를 확인하심이..
zlib 문제 라는 군요.
파일을 주고 받을때나 메모리에 파일내용을 저장할때 압축을 사용하는데
zlib 과 gzip 을 사용하는데,
zlib가 사용불가능하게 되어 있거나, zlib 이 설치 안되어 있나 봅니다.
Enabling zlib compression in php.ini (zlib.output_compression = On)
and then removing any ob_start("ob_gzhandler");
from the scripts seems to have solved the problem.
http://stackoverflow.com/questions/7024981/http-330-error-on-php-deprecation-errors
파일을 주고 받을때나 메모리에 파일내용을 저장할때 압축을 사용하는데
zlib 과 gzip 을 사용하는데,
zlib가 사용불가능하게 되어 있거나, zlib 이 설치 안되어 있나 봅니다.
Enabling zlib compression in php.ini (zlib.output_compression = On)
and then removing any ob_start("ob_gzhandler");
from the scripts seems to have solved the problem.
http://stackoverflow.com/questions/7024981/http-330-error-on-php-deprecation-errors
주석처리하니 잘되네요