|
Aurora-WebUI with Quickmap (Administrator)
HOME
HELP CHAT

ADMIN
MANAGE SETTINGS MODULES

EDITOR SUPPORT

ACCOUNT
EDIT

WORLD
NEWS REGIONS REGIONS (more info)

MAP QUICKMAP GALLERY

USERS
SEARCH USERS (online) USER Profile (More Info > Avie Name)

FORGOTTEN PASSWORD

Configuration
Installing WebUI into Aurora (now with 2 config.php's)
Please be aware that Aurora-WebUI is under development so changes will be regular.
Heres a look at mine, this is default so when you install it this is how it will look LINK
The latest Aurora-WebUI has a quikmap too and has to be configured also and both have a install.txt file.
git clone git://github.com/aurora-sim/Aurora-WebUI.git
Compile Aurora ./runprebuild.sh xbuild Aurora.sln OR nant
AURORA-WEBUI Install
Edit "./settings/config.php" BASICS NEEDED BELOW
##################### System #########################
define("SYSNAME","SITE NAME"); define("SYSURL","http://YOUR SERVER ADDRESS"); define("SYSMAIL","
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
"); define("WIREDUX_SERVICE_URL","http:// your_aurora_server_ip_or_dns:8007/WIREDUX"); define("WIREDUX_TEXTURE_SERVICE","http:// your_aurora_server_ip_or_dns:8002"); define("WIREDUX_PASSWORD","PASSWORD");
################### GridMap Settings ##################### //Allowing Zoom on your Map $ALLOW_ZOOM=TRUE; //Default StartPoint for Map $mapstartX=1000; CHANGE THIS TO YOUR REGION.INI X $mapstartY=1000; CHANGE THIS TO YOUR REGION.INI Y
Edit "./settings/databaseinfo.php
##################### Database ######################## define("C_DB_TYPE","mysql"); //Your Hostname here: define("C_DB_HOST","localhost"); //Your Databasename here: define("C_DB_NAME","auroraDB"); //Your Username from Database here: define("C_DB_USER","auroraUSER"); //Your Database Password here: define("C_DB_PASS","PASSWORD");
Please remember to backup your database
Import the .sql files inside "./sql_update/" into your AuroraDB database
mysql -u root -p auroraDB < wi_webui.sql
under [Handlers]. in ~/aurora-sim-Aurora-Sim/bin/Configuration/Standalone/Standalone.ini copy/paste the below.
WireduxHandler = WireduxHandler WireduxHandlerPort = 8007 WireduxHandlerPassword = "password" WireduxTextureServerPort = 8002
In /aurora-sim-Aurora-Sim/bin/AuroraServerConfiguration/Main.ini <==GRID Mode
WireduxHandler = WireduxHandler WireduxHandlerPort = 8007 WireduxHandlerPassword = "password" WireduxTextureServerPort = 8002
The "password" needs to be the same as the password in "WIREDUX_PASSWORD","PASSWORD" located in the config.php
Goto http://yourdomain.com/admin/index.php http://yourdomain.com/Aurora-WebUI/admin/index.php ---- if its in Aurora-WebUI folder http://yourdomain.com/Aurora-WebUI --- non admin main page
QUICKMAP install
Edit "./quickmap/includes/config.php" BASICS NEEDED BELOW
// General items // For Statics Images Folder define("SYSURL","http://SERVER ADDRESS/webui/quickmap/"); === change paths to your IP,no-ip,dyndns & WebUI & QuickMap.
//Your Grid-Domain $CONF_sim_domain = "http://SERVER ADDRESS/"; === change this to your server address, no-ip,dyndns or IP. //Installation path $CONF_install_path = "webui/quickmap/"; === change this to the PATH of you WebUI & QuicMap.
// Your Grid-Logo // Link to your Grid-Logo $CONF_logo = "http://SERVER ADDRESS/webui/quickmap/templates/default/images/aurora-webui-logo.png"; === As above change PATHS
// mysql database items $CONF_db_server = "localhost"; // Your Database-Server $CONF_db_user = "***"; // Database-User === points to your Aurora-Sim Database === $CONF_db_pass = "***"; // Password of User $CONF_db_database = "***"; // Name of Database
// The Coordinates of the Grid-Center $CONF_center_coord_x = "1000"; // the Center-X-Coordinate $CONF_center_coord_y = "1000"; // the Center-Y-Koordinate === change to your Grid Centre ===
|