Gay Nations Grid

This is our New Virtual World where you can have fun, meet people, chat, play, explore, create and share your dreams.

gn

Click Image

Useful Links

Aurora-Sim
A New Vision of OpenSim
metaverse-traveller
Seeking the elusive virtual worlds deep in the free Metaverse. Baldly going where few have gone before.


Newsflash

If you fail, try until you know it's impossible.

If you succeed, keep at it until it's an art.

Aurora-WebUI PDF Print E-mail
Written by Matto -Administrator   
Saturday, 23 April 2011 11:33

Aurora-WebUI with Quickmap (Administrator)

HOME

                              HELP                                                            CHAT
Thumbnail image Thumbnail image

ADMIN

                          MANAGE                                                      SETTINGS                                                   MODULES

Thumbnail image Thumbnail image Thumbnail image

                           EDITOR                                                       SUPPORT

Thumbnail image  Thumbnail image

 

ACCOUNT

                              EDIT

Thumbnail image

 

WORLD

                             NEWS                                                       REGIONS                                             REGIONS (more info)

Thumbnail image Thumbnail image Thumbnail image

                              MAP                                                         QUICKMAP                                                     GALLERY

Thumbnail image Thumbnail image Thumbnail image

 

USERS

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

Thumbnail image Thumbnail image Thumbnail image

 

FORGOTTEN PASSWORD

 

Thumbnail image

 

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 ===

Last Updated on Monday, 27 June 2011 18:20