• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Xampp Error "Website"

Heroman

New Member
Joined
Oct 1, 2012
Messages
84
Reaction score
0
Dears,

Any clue how to fix this?


Parse error: syntax error, unexpected variable "$_POST" in C:\xampp\htdocs\include.inc.php on line 36

Thanks in advance.
 
Post the whole script.
This my full include.inc.php
PHP:
<?php
//page generation time
$mtime = microtime();
$mtime = explode(" ",$mtime);
$mtime = $mtime[1] + $mtime[0];
$tstart = $mtime;

error_reporting(E_ALL ^ E_NOTICE);
session_start();

//emulate register_globals = off
if (ini_get('register_globals')) {
    if (isset($_REQUEST['GLOBALS']) || isset($_FILES['GLOBALS'])) {
        die('GLOBALS overwrite attempt detected');
    }

    // Variables that shouldn't be unset
    $noUnset = array('GLOBALS',  '_GET',
        '_POST',    '_COOKIE',
        '_REQUEST', '_SERVER',
        '_ENV',     '_FILES');

    $input = array_merge($_GET,    $_POST,
        $_COOKIE, $_SERVER,
        $_ENV,    $_FILES,
        isset($_SESSION) && is_array($_SESSION) ? $_SESSION : array());

    foreach ($input as $k => $v) {
        if (!in_array($k, $noUnset) && isset($GLOBALS[$k])) {
            unset($GLOBALS[$k]);
        }
    }
}
//emulate magic_quotes_gpc = off
if( get_magic_quotes_gpc() ) {
    $_POST = array_map('stripslashes', $_POST);
    $_GET = array_map('stripslashes', $_GET);
    $_COOKIE = array_map('stripslashes', $_COOKIE);
    $_REQUEST = array_map('stripslashes', $_REQUEST);
}

require ('config.inc.php');
require ('class/exceptions.php');
require ('class/globals.php');
require ('class/sql.php');
require ('class/account.php');
require ('class/player.php');
require ('class/guild.php');
require ('class/iobox.php');

//set timezone
date_default_timezone_set($cfg['timezone']);

//Set AAC version
$cfg['aac_version'] = 'avesta_1';
$cfg['schema_version'] = 19;

//set custom exception handler
set_exception_handler('AAC::ExceptionHandler');

//Check if extensions loaded
if (!extension_loaded('gd'))
    throw new LibraryMissingException('GD2 extension is required for image manipulations.');
if (!extension_loaded('simplexml'))
    throw new LibraryMissingException('SimpleXML extension is not installed');

//connect to SQL
AAC::$SQL = new SQL($cfg['SQL_Server'], $cfg['SQL_User'], $cfg['SQL_Password'], $cfg['SQL_Database']);
if ($cfg['schema_check']) {
    if (!AAC::$SQL->getSchemaVersion()) {
        throw new aacException('Sorry, your server schema is not supported. You may set $cfg[\'schema_check\'] = false; to everride this message.');
    } elseif(AAC::$SQL->getSchemaVersion() != $cfg['schema_version']) {
        throw new aacException('OTServ schema version [<b>'.AAC::$SQL->getSchemaVersion().'</b>] is not compatible with AAC schema version [<b>'.$cfg['schema_version'].'</b>]. Check <a href="http://nicaw.net/">http://nicaw.net/</a> for latest AAC or set $cfg[\'schema_check\'] = false; to everride this message.');
    }
}

//store server URL in variable for redirecting
if ($_SERVER['SERVER_PORT'] == 80 || $_SERVER['SERVER_PORT'] == 443)
    $cfg['server_url'] = $_SERVER['SERVER_NAME'];
else
    $cfg['server_url'] = $_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'];
$cfg['server_href'] = 'http://'.$cfg['server_url'].dirname(htmlspecialchars($_SERVER['PHP_SELF'])).'/';

if (empty($_COOKIE['remember'])) {
//Anti session hijacking
    if (!empty($_SESSION['account']) && ($_SERVER['REMOTE_ADDR'] != $_SESSION['remote_ip'] || (time() - $_SESSION['last_activity'] > $cfg['timeout_session'])))
        unset($_SESSION['account']);

} elseif(!$cfg['secure_session'] && !array_key_exists('account',$_SESSION)) {
//Autologin
    try {
        $account = new Account();
        $account->load($_COOKIE['account']);
       
        if ((string)$_COOKIE['password'] == sha1($account->attrs['accno'].$account->attrs['password'].$_SERVER['HTTP_HOST'])) {
            $_SESSION['account']=$account->attrs['accno'];
            $_SESSION['remote_ip']=$_SERVER['REMOTE_ADDR'];
        }
    } catch (AccountException $e) {}
    unset($account);
}
$_SESSION['last_activity'] = time();

?>
and this my news.php
PHP:
<?php
/*
    Copyright (C) 2007 - 2009  Nicaw

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License along
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
include ("include.inc.php");

if (isset($_GET['RSS2'])){
header("Content-type: application/rss+xml");

echo '<?xml version="1.0"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>'.htmlspecialchars($cfg['server_name']).' News</title><link>'.htmlspecialchars($cfg['server_url']).'</link><description>Server news contains latest information about updates, downtimes and events.</description>';

$mysql = AAC::$SQL;
$sql = $mysql->myQuery('SELECT * FROM `nicaw_news` ORDER BY `date` DESC LIMIT 10');

while ($a = $mysql->fetch_array()){
  echo '<item>';
  echo '<guid>http://'.htmlspecialchars($cfg['server_url'].$_SERVER['PHP_SELF'].'?id='.$a['id']).'</guid>';
  echo '<title>'.htmlspecialchars($a['title']).'</title>';
  echo '<pubDate>'.date('D, d M Y H:i:s O',$a['date']).'</pubDate>';
  echo '<dc:creator>'.htmlspecialchars($a['creator']).'</dc:creator>';
  if ((bool)(int)$a['html']){
    echo '<content:encoded>'.htmlspecialchars($a['text']).'</content:encoded>';
  }else{
    require_once('class/simple_bb_code.php');
    $bb = new Simple_BB_Code();
    echo '<content:encoded>'.htmlspecialchars($bb->parse($a['text'])).'</content:encoded>';
  }
  echo '</item>';
}
echo '</channel></rss>';

}else{
$ptitle= "News - $cfg[server_name]";
include ("header.inc.php");
?>
<div id="content">
<div class="top">Server News</div>
<div class="mid">
<a href="news.php?RSS2" style="text-decoration: none; float: right;"><img src="resource/feed.png" title="Subscribe to RSS" alt="rss" style="vertical-align: middle;"/></a>
<?php
$mysql = AAC::$SQL;
if (isset($_GET['id']))
    $mysql->myQuery('SELECT * FROM `nicaw_news` WHERE `id` = \''.mysql_escape_string((int)$_GET['id']).'\'');
else
    $mysql->myQuery('SELECT * FROM `nicaw_news` ORDER BY `date` DESC LIMIT 10');

while ($a = $mysql->fetch_array()){
  echo '<i>'.date("jS F Y",$a['date']).'</i>';
  echo ' - <b>'.htmlspecialchars($a['creator']).'</b>';
  echo '<h2>'.htmlspecialchars($a['title']).'</h2>';
  echo '<blockquote>';
  if ((bool)(int)$a['html']){
    echo $a['text'];
  }else{
    require_once('class/simple_bb_code.php');
    $bb = new Simple_BB_Code();
    echo $bb->parse($a['text']);
  }
  echo '</blockquote>';
  echo '<br/><br/>';
}
?>
</div>
<div class="bot"></div>
</div>
<?php include ("footer.inc.php");}?>
 
Back
Top