Would you like to react to this message? Create an account in a few clicks or log in to continue.

Ligando Emu com Cms Hospedada TotalFree

 :: Habbo :: Tutorias

Go down

Ligando Emu com Cms Hospedada TotalFree Empty Ligando Emu com Cms Hospedada TotalFree

Post  Admin-GoogleChrome Wed 26 Jan - 23:28

Ligar Emu Com Cms Hospedada

Primeiro vc vai inc.config e Configura ele assim



<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
| [You must be registered and logged in to see this link.]
| #######################################################################
| This program is free software: you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation, either version 3 of the License, or
| (at your option) any later version.
| #######################################################################
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
\======================================================================*/

$config['Site']['www'] = "http://SEUDOMINIO.totalsfree.com";
$config['Site']['hash_secret'] = "xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\$OIFThrR_gh(ugf*/";

$config['MySQL']['hostname'] = "localhost";
$config['MySQL']['username'] = "SEU USUARIO";
$config['MySQL']['password'] = "SUA SENHA QUE ELES DERAM";
$config['MySQL']['database'] = "SUA DB";

$config['MUS']['enabled'] = false;
$config['MUS']['ip'] = "SEUIP";
$config['MUS']['port'] = "90";

?>
So mude aonde ta em vermelho

Depois vá em class.db.mysql.phpe configure assim :
<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
| [You must be registered and logged in to see this link.]
| #######################################################################
| This program is free software: you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation, either version 3 of the License, or
| (at your option) any later version.
| #######################################################################
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
\======================================================================*/

class MySQL
{
private $connected = false;
private $hostname = "localhost";
private $username = "seu user";
private $password = "senha do host";
private $database = "sua db do host";
private $link;

public function MySQL($host, $user, $pass, $db)
{
$this->connected = false;
$this->hostname = $host;
$this->username = $user;
$this->password = $pass;
$this->database = $db;
}

public function IsConnected()
{
if ($this->connected)
{
return true;
}

return false;
}

public function Connect()
{
$this->link = mysql_connect($this->hostname, $this->username, $this->password) or $this->error(mysql_error());
mysql_select_db($this->database, $this->link) or $this->error(mysql_error());

$this->connected = true;
}

public function Disconnect()
{
if($this->connected)
{
@mysql_close($this->link) or $this->error("could not close conn");
$this->connected = false;
}
}

public function DoQuery($query)
{
$resultset = @mysql_query($query, $this->link) or $this->error(mysql_error());
return $resultset;
}

public function Evaluate($resultset)
{
return @mysql_result($resultset, 0);
}

public function Error($errorString)
{
global $core;

$core->systemError('Database Error', $errorString);
}

public function __destruct()
{
$this->disconnect();
}
}

?>

agora vai em page-client e configure com o seu ip que vc ve aqui : [You must be registered and logged in to see this link.]

Depois abra o config do emulador e configure assim:
## uberEmulator System Configuration File
## Must be edited for the server to work

## MySQL Configuration
db.hostname=184.154.51.84(NAOMUDE)
db.port=3306
db.username=USUARIO
db.password=SENHA DO HOST
db.name=SUA DB

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

## Game TCP/IP Configuration
game.tcp.bindip=SEU IP DO MODEM(OU 127.0.0.1)
game.tcp.port=30000
game.tcp.conlimit=500

## MUS TCP/IP Configuration
mus.tcp.bindip=127.0.0.1(NAO MUDE)
mus.tcp.port=30001
mus.tcp.allowedaddr=SEU IP

## Client configuration
client.ping.enabled=1
client.ping.interval=30000
Mude apenas aonde ta em vermelhor se muda algo que nao devia vai dar erro..

Parte final vá no inicio do cpanel,depois mysql remoto... e add seu ip pronto.. tente ligar o emulador vai demorar um poco pra inicia ,tem que esperar...!
avatar
Admin-GoogleChrome
Administrador
Administrador

Mensagens Mensagens : 454
Moedas Moedas : 500285
Reputação Reputação : -3
Data de inscrição : 2011-01-15
Idade : 28
Localização : Em frenta ao pc

https://habbocreat.forumeiros.com

Back to top Go down

Back to top


 :: Habbo :: Tutorias

 
Permissions in this forum:
You cannot reply to topics in this forum