local hostta calısan php sitem hostinge attım ve admin paneline ulaşırken altakı hatayı vermeye başladı
Warning: Cannot modify header information - headers already sent by (output started at /vhosts/xxx.com/http/.cnn/conn_inc.php:1) in /vhosts/xxx.com/http/admin/valid.php on line 3
Warning: Cannot modify header information - headers already sent by (output started at /vhosts/xxx .com/http/.cnn/conn_inc.php:1) in /vhosts/xxxx.com/http/admin/valid.php on line 4
bu konulardada bilgim cok az yardımcı olursanız sevinirim şimdiden tesekkürler
valid.php dosyasıda altadır
CODE:
<?php
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
require_once "application.php";
if (!isset($_SESSION["validatedUser"])) {
@session_start();
session_cache_limiter('private');
}
if (!isset($_SESSION["CaRbakSe5"])) {
$cik=true;
}
if ($cik==false){
if ($_SESSION["CaRbakSe5"]!=true)
$cik=true;
}
if ($cik==true){
?>
<script>location.href='../.'</script>
<?php
}
?>
valid.php nin en üstüne
<?php ob_start(); ?>
yaz
Sayfadaki kodların en tepesine diyor.
