-
Notifications
You must be signed in to change notification settings - Fork 0
Installation Guide
This guide walks you through installing L.O.R.E. on your WordPress site step-by-step.
Before installing L.O.R.E., make sure you have:
- ✅ WordPress 5.5 or higher
- ✅ PHP 7.4 or higher
- ✅ OpenSimulator grid (any version with Robust database)
- ✅ MySQL/MariaDB access to your Robust database
- ✅ Warp3D map tiles enabled on your grid
Not sure if you have Warp3D? Check your OpenSim.ini for [Warp3DImageModule]. Most modern grids have this enabled by default.
This is the easiest method for most users.
- Go to the Releases page
- Download the latest
lore-opensim-map-vX.X.X.zipfile - Save it to your computer
- Log into your WordPress Admin dashboard
- Go to Plugins → Add New
- Click the Upload Plugin button at the top
- Click Choose File and select the zip you downloaded
- Click Install Now

- After installation completes, click Activate Plugin
- You'll see "Plugin activated" at the top
- L.O.R.E. is now installed!
Next: Continue to Configuration Guide to set up your grid.
If you prefer manual installation or don't have access to WordPress Admin upload:
- Download
lore-opensim-map-vX.X.X.zipfrom Releases - Extract the zip file on your computer
- You should see a folder called
lore-opensim-map
- Connect to your WordPress server via FTP (FileZilla, WinSCP, etc.)
- Navigate to
/wp-content/plugins/ - Upload the entire
lore-opensim-mapfolder - Wait for all files to upload
- Log into WordPress Admin
- Go to Plugins
- Find "L.O.R.E. - Leaflet OpenSimulator Regional Explorer"
- Click Activate
Next: Continue to Configuration Guide to set up your grid.
WordPress Admin Method:
- Go to Plugins in WordPress Admin
- Find L.O.R.E. and click Deactivate
- Click Delete
- Follow Method 1 above to install the new version
- Your settings and region data are preserved!
FTP Method:
- Delete the
/wp-content/plugins/lore-opensim-map/folder - Upload the new version
- Activate in WordPress Admin
wp_lore_regions) and all settings are stored in the WordPress database, NOT in the plugin files. Deleting the plugin folder is safe - you won't lose any data!
L.O.R.E. needs read-only access to your OpenSimulator Robust database to sync regions.
CREATE USER 'lore_readonly'@'%' IDENTIFIED BY 'secure_password_here';
GRANT SELECT ON robust.regions TO 'lore_readonly'@'%';
FLUSH PRIVILEGES;This creates a user that can ONLY read the regions table - much more secure!
You can use your existing Robust database credentials, but this gives L.O.R.E. full access. Only do this if you trust the plugin and your WordPress site is secure.
After activation, you should see:
- Settings → L.O.R.E. Map appears in your WordPress admin menu
- A new database table
wp_lore_regionsexists (check via phpMyAdmin) - No error messages appear
Having issues? Check Troubleshooting or FAQ.
- Configure L.O.R.E. - Enter your grid settings
- Sync Your Regions - Import regions from your database
- Add the Map - Put the map on a page
Need help? Visit the Troubleshooting page or ask in GitHub Discussions.