Is this possible?

fesssel

New Member
Jan 21, 2017
3
0
Hi,
I currently own an Apache web server alongside a windows VPS, would it be possible for me to host a retro on both by using the emu on Windows and the site and MySQL on my web server?
What sort of config would I need?

Thanks
 

fesssel

New Member
Jan 21, 2017
3
0
So which files would be pointing to what?
________________________________
Emulator config:
## uberEmulator System Configuration File
## Must be edited for the server to work

## MySQL Configuration
db.hostname=MySQL IP
db.port=3306
db.username=MySQL Username
db.password=MySQL Password
db.name=MySQL Database Name

## MySQL pooling setup (controls amount of connections)
db.pool.minsize=10
db.pool.maxsize=500

## Game TCP/IP Configuration
game.tcp.bindip= 127.0.0.1?
game.tcp.port=30000
game.tcp.conlimit=11000
game.tcp.conperip=100
game.tcp.enablenagles=true

## MUS TCP/IP Configuration
mus.tcp.bindip= 127.0.0.1?
mus.tcp.port=3001
mus.tcp.allowedaddr= 127.0.0.1?

## Client configuration
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300
________________________________
app/management/config.php:
$_CONFIG['mysql']['hostname'] = 'localhost';
$_CONFIG['mysql']['username'] + $_CONFIG['mysql']['username'] + $_CONFIG['mysql']['password'] = MySQL details
$_CONFIG['hotel']['server_ip'] = Windows VPS IP?
$_CONFIG['hotel']['url'] = ' ';
$_CONFIG['hotel']['external_vars'] =' ';
$_CONFIG['hotel']['external_texts'] = ' ';
$_CONFIG['hotel']['product_data'] = ' ';
$_CONFIG['hotel']['furni_data'] = ' ';
$_CONFIG['hotel']['swf_folder'] = ' ';
________________________________
app/tpl/skins/MYSKIN/client.php:
var BaseUrl = " ";
var flashvars =
{
"client.starting" : "Please wait, {hotelname} loading",
"hotelview.banner.url" : " ",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "Windows VPS IP?",
"connection.info.port" : "30000",
"site.url" : " ",
"url.prefix" : " ",
"client.reload.url" : " ",
"client.fatal.error.url" : " ",
"client.connection.failed.url" : " ",
"external.variables.txt" : " ",
"external.texts.txt" : " ",
"productdata.load.url" : " ",
"furnidata.load.url" : " ",
"use.sso.ticket" : "1",
"sso.ticket" : "{sso}",
"processlog.enabled" : "0",
"flash.client.url" : BaseUrl,
"flash.client.origin" : "popup"
};
var params =
{
"base" : BaseUrl + "/",
"allowScriptAccess" : "always",
"menu" : "false"
};
swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", " ", flashvars, params, null);
________________________________
game/external_variables.txt:
Replace all localhost with mydomain.domain here:

________________________________
Any more files I should change?
 
Last edited:

Users who are viewing this thread

Top