|
|
|
Apache-2.2.X 에서 Apache-2.4.X로 업데이트 하다보니 바뀐게 너무 많아 에러 사항이 너무 많다.
무사히 다 끝냈나 싶어 다시 확인하니 다음과 같은 에러가 보인다.
Apache Error :
unable to include potential exec "include/top.html" in parsed file
unable to include potential exec "include/bottom.html" in parsed file
정말 난감하고 애가 탄다.
Solution : Apache2\conf\extra\httpd-multilang-errordoc.conf
이 곳 설정 파일에 문제가 있나 보다. 원소스 그대로 인데도 문제가 생기다니.....
다음과 같이 설정을 변경 해 줘야 한다.
24.<Directory "Apache2/error">
25. AllowOverride None 26.# Options IncludesNoExec 27. Options Includes 28. AddOutputFilter Includes html 29. AddHandler type-map var30. Order allow,deny 31. Allow from all 32. LanguagePriority en cs de es fr it ja ko nl pl pt-br ro sv tr 33. ForceLanguagePriority Prefer Fallback 34.</Directory>
Options IncludesNoExec → Options Includes 로 변경한 후 아파치 재실행
