Bir hazir sistemi gelistirmek istedim response dizayn giydirdim fakat ilk baslarda böyle bir hata yoktu sonradan cikmaya basladi.
hata mesaji: "Parse error: syntax error, unexpected end of file in C:\xampp\htdocs\config.php on line 29"
config.php
error_reporting(E_ALL);
ini_set('display_errors', '1');
$host = "localhost"; // your mysql server address
$user = "SQLUSERNAME"; // your mysql username
$pass = "SQLPASSWORD"; // your mysql password
$tablename = "SQLDATABASENAME"; // your mysql table
session_start();
$data = null;
if(!(@mysql_connect("$host","$user","$pass") && @mysql_select_db("$tablename"))) {
?>
MSQL ERROR
exit;
}
include_once 'functions.php';
require_once "includes/pluggable.php";
foreach( glob("plugins/*/index.php") as $plugin) {
require_once($plugin);
}
hook_action('initialize');
$site = mysql_fetch_object(mysql_query("SELECT * FROM settings"));
?>