2017 © Pedro PelĆ”ez
 

library gbxremote

A library which enables you to connect to a Maniaplanet Server

image

jojo/gbxremote

A library which enables you to connect to a Maniaplanet Server

  • Wednesday, February 12, 2014
  • by Jojo44
  • Repository
  • 1 Watchers
  • 1 Stars
  • 14 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

About

This PHP library allows you to connect with a Maniaplanet Server to display e.g. the current players on your website. It“s a rewrite of the originally with the dedicated server deliverd GbxRemote.inc.php. It was a test if the php build in xmlrpc library is faster than a self written one. Some tests have shown that this isn“t the case for a small amount of requests. However if you are using this library with a servercontroller wtih frequent requests you will get better speed and workload., (*1)

Documentation

Install php xmlrpc extension

Linux

apt-get install php5-xmlrpc

Windows

uncomment the following line in your php.ini (remove ; in front of the line), (*2)

;extension=php_xmlrpc.dll

Sample Code

$client = new GBXRemote();
$client->connect("127.0.0.1", 5000);
$client->Authenticate("SuperAdmin", "SuperAdminPassword");
$version = $client->GetVersion();
$maps = $client->GetMapList(100, 0);
$client->close();

The Versions

12/02 2014

dev-master

9999999-dev

A library which enables you to connect to a Maniaplanet Server

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • ext-xmlrpc *

 

12/02 2014

1.1.0

1.1.0.0

A library which enables you to connect to a Maniaplanet Server

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • ext-xmlrpc *

 

06/01 2014

1.0.0

1.0.0.0

A library which enables you to connect to a Maniaplanet Server

  Sources   Download

proprietary

The Requires

  • php >=5.3.0
  • ext-xmlrpc *