RemoteAdmin:admin estate reload
From OpenSimulator
Revision as of 01:54, 9 May 2013 by Michelle Argus (Talk | contribs)
admin_estate_reload remotely allows to reload estate settings of all regions in the simulator. This can be used to update the estate settings if they have changed on another simulator or database.
Contents |
Enabling admin_estate_reload
If not all functions are enabled, use admin_estate_reload to enable the function in the [RemoteAdmin] section
enabled_methods = admin_estate_reload,...
Parameters
Required Parameters
No parameters are required
parameter | Description | Values |
---|
Optional Parameters
No optional parameter
parameter | Description | Values |
---|
Returned Parameters
Returned Parameters
These parameters are returned by Remote Admin
parameter | Description | Values |
---|---|---|
success | true when successfull | true, false |
Error messages
No error messages
Notes
- From commit 90f03c on Mon 6 May 2013 (OpenSimulator 0.7.5-dev)
Example
PHP
<?php // Including the RemoteAdmin PHP class. include('RemoteAdmin.php'); // Instantiate the class with parameters identical to the Python example above $myRemoteAdmin = new RemoteAdmin('127.0.0.1', 9000, 'secret'); // Invoke admin_estate_reload $myRemoteAdmin->SendCommand('admin_estate_reload', array()); ?>