Ahoj, chci na serveru udelat VIP a kdyz chci vlozit scripty na server tak mi to hlásí tuto chybu, nevíte co to je za problém, vše jsem dělal podle návodu

Spoiler: zobrazit
Kód: Vybrat vše
Chyba
Pravděpodobně máte v SQL dotazu chybu. Níže uvedený výstup MySQL serveru (pokud je nějaký) vám také může pomoci při zkoumání problému
ERROR: Neznámé interpunkční znaménko @ 1
STR: <?
SQL: <?php
/*
RCON remote console class, modified for minecraft compability by Tehbeard.
!!!YOU MUST CONFIGURE RCON ON YOUR MINECRAFT SERVER FOR THIS TO WORK
AT TIME OF WRITING ONLY 1.9pr4+ HAVE BUILTIN RCON SUPPORT!!!
Example Code:
============
include_once("rcon.class.php"); //Include this file
$r = new rcon("127.0.0.1",25575,"foobar"); //create rcon object for server on the rcon port with a specific password
if($r->Auth()){ //Connect and attempt to authenticate
{
$r->rconCommand("say Saving in 10 seconds!"); //send a command
sleep(10);
$r->rconCommand("save-all"); //send a command
$r->rconCommand("say Save complete!");//send a command
echo $r->rconCommand("list");//send a command, echo returned value
}
============
Based upon the following work:
[<<<
Basic CS:S Rcon class by Freman. (V1.00)
----------------------------------------------
Ok, it's a completely working class now with with multi-packet responses
Contact: printf("%s%s%s%s%s%s%s%s%s%d%s%s%s","rc","on",chr(46),"cl","ass",chr(64),"pri","ya",chr(46),2,"y",chr(46),"net")
Behaviour I've noticed:
rcon is not returning the packet id.
>>>]
*/
define("SERVERDATA_EXECCOMMAND",2);<?php
/*
RCON remote console class, modified for minecraft compability by Tehbeard.
!!!YOU MUST CONFIGURE RCON ON YOUR MINECRAFT SERVER FOR THIS TO WORK
AT TIME OF WRITING ONLY 1.9pr4+ HAVE BUILTIN RCON SUPPORT!!!