aliyaghobi
کاربر عضو
از یه اسکریپت کوتاه کننده لینک استفاده میکنم,لینک ها رو هم کوتاه میکنه ولی وقتی رو لینک ها کلیک میکنم صفخه ی باز میشه و این ارور رو میده
Warning: Cannot modify header information - headers already sent by (output started at /home/plinkir/public_html/includes/config.php:10) in /home/plinkir/public_html/goto.php on line 30
تا اونجای که متوجه شدم میگه خط 30 فایل goto.php مشکل داره !!!
فایل goto.php :
مشکل کار از کجاست؟! راستی همزمان تو هاستم فایلی به نام error_log ظاهر میشه که کدهای زیر توشه
با سپاس
Warning: Cannot modify header information - headers already sent by (output started at /home/plinkir/public_html/includes/config.php:10) in /home/plinkir/public_html/goto.php on line 30
تا اونجای که متوجه شدم میگه خط 30 فایل goto.php مشکل داره !!!
فایل goto.php :
کد:
<?php
include 'includes/config.php';
include 'includes/UrlShortener.php';
$short = new UrlShortener();
$url = $short->getUrl($_GET['url']);
if(empty($url))
{
echo '<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="css/site.css" rel="stylesheet">
</head>
<body>
<center>
<a href="http://plink.ir/">
<img src="img/plink.png" title="سرویس کوتاه کننده لینک ایرانی">
</a><br/>
<h1>404 Error</h1><p>صفحه مورد نظر یافت نشد!</p><br/>
<a href="'.SITEURL.'">بازگشت به صفحه اصلی</a>
</center>
</body>
</html>';
}else
{
$short->addCount($url);
header('Location:'.$url);
}
?>
کد:
[15-Mar-2013 16:33:56] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/plinkir/public_html/includes/config.php:10) in /home/plinkir/public_html/goto.php on line 30
[15-Mar-2013 16:34:00] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/plinkir/public_html/includes/config.php:10) in /home/plinkir/public_html/goto.php on line 30
[15-Mar-2013 16:36:17] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/plinkir/public_html/includes/config.php:10) in /home/plinkir/public_html/goto.php on line 30