Yeni bir yazılım üzerine localhost da çalıştıktan sonra host üzerinde denemeye almak istedim zaman geçtikçe admin paneli açılmamaya başladı. Hata loglarını incelediğimde session_start(): ile alakalı bir hata aldığımı gördüm
Log Kayıt;
[06-Dec-2017 06:50:43 UTC] PHP Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/vortexco/public_html/vortexsecure/dashboard.php:12) in /home/vortexco/public_html/vortexs/core.php on line 10
Dashboard.php 12. Satır 33.Satır arası
require("core.php");
head();
?>
Ana Sayfa
Core.php 1.Satır ile 40.Satır arası
$configfile = 'config.php';
if (!file_exists($configfile)) {
echo '';
exit();
}
include 'config.php';
session_start();
if ($client == 'Yes') {
echo '
<script>
if (window!=window.top) {
//Access Granted
}
else {
alert("Direct access is not allowed.");
window.stop();
}
</script>
';
}
$version = "2.6";
if ($client == 'No') {
if (isset($_SESSION['sec-username'])) {
$uname = $_SESSION['sec-username'];
$table = $prefix . 'users';
$suser = mysqli_query($connect, "SELECT * FROM `$table` WHERE username='$uname'");
$count = mysqli_num_rows($suser);
if ($count < 0) {
echo '';
exit;
}
} else {
echo '';
exit;
}
}
Bu hatayı nasıl çözerim yardımcı olursanız çok sevinirim.