PHP-Minecraft-Rcon
PHP-Minecraft-Rcon copied to clipboard
Simple Rcon class for php.
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 4212720152 bytes)
Topic ;v
require_once "rcon.php"; $host = $host_ST; $port = $port_ST; $password = $password_ST; $timeout = $timeout_ST; use Thedudeguy\Rcon; $rcon = new Rcon($host, $port, $password, $timeout); error_reporting(E_ALL); if($rcon->connect()) echo "+"; else echo "-";...
Hello, i'm currently writing a RCON-PHP-Client and i want to use this rocn.php. But if i'm trying to use it VSCode says at `use Thedudeguy\Rcon;`: _syntax error, unexpected 'use' (T_USE)_...
The error occurred can update this code, I need it very much.
I know this is a known issue, but has there been any progress to getting packets larger than 4096 working? https://github.com/xPaw/PHP-Source-Query/blob/master/SourceQuery/SourceRcon.php has it done, but I like the way your...