2010-04-15 3 views
1

최근 웹 사이트 코드를 변경하지 않아도 동적 PHP 페이지 중 일부는 부분적으로 만 렌더링되거나 전혀 렌더링되지 않습니다.미해결 된 읽기 데이터가 남아 있거나 서버에서 빈 회신으로 인해 전송 문제를 해결하려면 어떻게해야합니까?

: 나는 컬 실행할 때
$ curl -lv http://example.com/create_ad.php 
* About to connect() to example.com port 80 
* Trying 66.777.888.999... * connected 
* Connected to example.com (66.777.888.999) port 80 
> GET /mypage.php HTTP/1.1 
User-Agent: curl/7.13.2 (i386-pc-linux-gnu) libcurl/7.13.2 OpenSSL/0.9.7e zlib/1               .2.2 libidn/0.5.13 
Host: example.com 
Pragma: no-cache 
Accept: */* 

* Empty reply from server 
* Connection #0 to host example.com left intact 
curl: (52) Empty reply from server 
* Closing connection #0 

그리고 부분적으로 렌더링 된 페이지에

이, 나는이를 참조하십시오 페이지가 전혀 렌더링하지 않습니다, 나는 컬 실행할 때, 이것은 내가 볼 것입니다

$ curl -lv http://example.com/anotherpage.php 
* About to connect() to example.com port 80 
* Trying 66.777.888.999... * connected 
* Connected to example.com (66.777.888.999) port 80 
> GET /anotherpage.php HTTP/1.1 
User-Agent: curl/7.13.2 (i386-pc-linux-gnu) libcurl/7.13.2 OpenSSL/0.9.7e zlib/1.2.2 libidn/0.5.13 
Host: example.com 
Pragma: no-cache 
Accept: */* 

< HTTP/1.1 200 OK 
< Date: Thu, 15 Apr 2010 20:03:49 GMT 
< Server: Apache/1.3.39 (Unix) mod_ssl/2.8.30 OpenSSL/0.9.8d 
< Connection: close 
< Transfer-Encoding: chunked 
< Content-Type: text/html 
[PARTIALLY RENDERED & MANGLED HTML HERE] 
* transfer closed with outstanding read data remaining 
* Closing connection #0 
curl: (18) transfer closed with outstanding read data remaining 

PHP 오류 로그에 오류가 없습니다. 어떤 아이디어?

답변

0

로그 파일이 롤백되고 보관되지 않아서 아파치 로그 파일이 2GB 이상으로 커져서 문제가 발생했습니다.

관련 문제