헤더 오류건
본문
<?php
include_once('../common.php');
// 페이지 제목
$g5['title'] = "오시는길";
include_once(G5_THEME_PATH.'/head.php');
?>
<!-- 여기 아래부터 모든 HTML 요소 구성 시작 -->
<meta charset="utf-8">
<div><img src="../img/map.gif"></div>
<div>
<div id="map" style="width:858px;height:500px"></div>
<script>
function myMap() {
var myCenter = new google.maps.LatLng(0,0);
var mapCanvas = document.getElementById("map");
var mapOptions = {center: myCenter, zoom: 17};
var map = new google.maps.Map(mapCanvas, mapOptions);
var marker = new google.maps.Marker({position:myCenter});
marker.setMap(map);
var infowindow = new google.maps.InfoWindow({
content: "NICKENT GOLF KOREA"
});
infowindow.open(map,marker);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDRkfUjo3-
4f7M9wATCmEBx2Vy3V9zEask&callback=myMap"></script>
</div>
Warning: Cannot modify header information - headers already sent by (output started at /home/nickent/public_html/rent/rent.php:1) in /home/nickent/public_html/common.php on line 8
Warning: Cannot modify header information - headers already sent by (output started at /home/nickent/public_html/rent/rent.php:1) in /home/nickent/public_html/common.php on line 625
Warning: Cannot modify header information - headers already sent by (output started at /home/nickent/public_html/rent/rent.php:1) in /home/nickent/public_html/common.php on line 627
Warning: Cannot modify header information - headers already sent by (output started at /home/nickent/public_html/rent/rent.php:1) in /home/nickent/public_html/common.php on line 628
Warning: Cannot modify header information - headers already sent by (output started at /home/nickent/public_html/rent/rent.php:1) in /home/nickent/public_html/common.php on line 629
Warning: Cannot modify header information - headers already sent by (output started at /home/nickent/public_html/rent/rent.php:1) in /home/nickent/public_html/common.php on line 630
Warning: Cannot modify header information - headers already sent by (output started at /home/nickent/public_html/rent/rent.php:1) in /home/nickent/public_html/common.php on line 631
이런 오류가 뜹니다 도와주세요...
인코딩 할때 utf-8로 하도록 저장했구요그외 특이사항으로는 게시판관리기능으로 생성된 페이지가 아니라는것 입니다
!-->답변 2
제가봤을때는 이경우는 대부분 common.php파일의 경로문제인데요...
include_once('../common.php'); 이부분의 경로를
include_once('../../common.php'); 이렇게 바꿔보시시던가
include_once('common.php'); 이렇게 바꿔보시던가....
head.php파일로부터의 경로를 찾아가시면 될껍니다.
아니면 head파일에 common.php가 한번더 인크루드되어있다던가.....
그경우 위에 common.php를 인크루드하는곳을 지워주시고
head.php인크루드 밑에 타이틀설정 넣어주시면 되겠습니다.
<?php
include_once(G5_THEME_PATH.'/head.php');
// 페이지 제목
$g5['title'] = "오시는길";
?>
이런식으로요
/home/nickent/public_html/common.php
위 페이지에서 뭔가 출력을 하고 있는 것 같습니다.
공백이나 뭔가 출력하고 있는 것을 살펴보세요..