RemoteAdmin:admin save oar

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m
(7 intermediate revisions by 3 users not shown)
Line 37: Line 37:
 
! Values
 
! Values
 
|-
 
|-
| ''region_uuid''
+
| ''region_id''
 
| region uuid, optional region_name
 
| region uuid, optional region_name
 
|
 
|
Line 53: Line 53:
 
| C, T, CT
 
| C, T, CT
 
|}
 
|}
 
  
 
== Returned Parameters ==
 
== Returned Parameters ==
Line 80: Line 79:
 
== Example ==
 
== Example ==
 
=== PHP ===
 
=== PHP ===
 +
This example needs the RemoteAdmin PHP Class file available [http://code.google.com/p/opensimtools/wiki/RemoteAdminPHPClass here].
 +
 
<source lang="php">
 
<source lang="php">
 
<?php
 
<?php
Line 90: Line 91:
  
 
// Invoke admin_save_oar (multiple parameters)
 
// Invoke admin_save_oar (multiple parameters)
$parameters = array('region_name' => 'My Plaza', 'filename' => 'my_backup.xml');
+
$parameters = array('region_name' => 'My Plaza', 'filename' => 'my-region.oar');
 
$myRemoteAdmin->SendCommand('admin_save_oar', $parameters);
 
$myRemoteAdmin->SendCommand('admin_save_oar', $parameters);
 
?>
 
?>
Line 97: Line 98:
 
= See Also =
 
= See Also =
  
* [[OpenSim_Archives|How to use OpenSim Archives (OAR)]]
+
* [[Server Commands]]
* [[OAR Format 0.1 | OAR Format 0.1]]
+
 
* [[OAR Format 0.2 | OAR Format 0.2]]
+
  
[[Category:Users]]
+
[[Category:RemoteAdmin]]
[[Category:Support]]
+
[[Category:RemoteAdmin Commands]]
[[Category:Tech Reference]]
+
[[Category:Help]]
+
[[Category:Configuration]]
+
[[Category:Getting_Started]]
+
[[Category:Development]]
+

Revision as of 16:29, 24 October 2015

admin_save_oar remotely allows to save a oar files of regions


Contents

Enabling admin_save_oar

If not all functions are enabled, use admin_save_oar to enable the function in the [RemoteAdmin] section

enabled_methods = admin_save_oar,...


Parameters

Required Parameters

These parameters are required

parameter Description Values
region_name Name of the new region, optionaly region_uuid
filename file name


Optional Parameters

These parameters are optional and do not need to be set

parameter Description Values
region_id region uuid, optional region_name
noassets save oar without objects "true"
profile add all names of creators from this world with link to profile <url> of profile service
perm objects with insufficient permissions will not be saved C, T, CT

Returned Parameters

Returned Parameters

These parameters are returned by Remote Admin

parameter Description Values
saved true when successfully saved xml true, false


Error messages

No error messages


Notes

Example

PHP

This example needs the RemoteAdmin PHP Class file available here.

<?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_save_oar (multiple parameters)
$parameters = array('region_name' => 'My Plaza', 'filename' => 'my-region.oar');
$myRemoteAdmin->SendCommand('admin_save_oar', $parameters);
?>

See Also

Personal tools
General
About This Wiki