php를 이용하시는 분중에
apache, php를 재컴파일을 한 뒤에 php소스중에서 http://주소 로 걸려있는 변수가
include 가 되지않는 현상이 발생하였음
*예시 소스내용
<?
include "./main_page/main_sos.php"; ---> 정상적작동
include "http://test.com/main_top.html"; ----> 작동안함
?>
이에 php.ini 에서 allow_url_include 설정 변경후 정상 작동하였음
*해결방법
기존설정
; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
allow_url_include = Off
변경내용 적용
; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
allow_url_include = On
allow_url_fopen << 해당 설정도 On 되어있었지만 되지않았음. 이유는 include 구문이었기때문에..