yine dediğim gibi yazmamışsınız. ob_start() olacak ob_star değil...
bu seferde öyle oldu
Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in /home/udemirne/public_html/config.php on line 25
Warning: Cannot modify header information - headers already sent by (output started at /home/udemirne/public_html/index.php:1) in /home/udemirne/public_html/index.php on line 10
10 satıa kadar kodlar index de
<?php
ob_start() ;
@session_start() ;
require_once('twitteroauth/twitteroauth.php');
require_once('config.php');
require_once("function.php");
/* If access tokens are not available redirect to connect page. */
if (empty($_SESSION['access_token']) || empty($_SESSION['access_token']['oauth_token']) || empty($_SESSION['access_token']['oauth_token_secret'])) {
header('Location: clearsessions.php');
exit();config 24. ve 25. satırlar
$q = mysql_query("select * from settings");
while($v = mysql_fetch_assoc($q)) { $_set[$v["var"]] = $v["val"]; }