Procurar
Últimos assuntos
[Tuto] Como ligar emu com cms hospedada no veeserver[tuto]
Stage Hotel Forum :: Habbo :: Tutoriais
Página 1 de 1
[Tuto] Como ligar emu com cms hospedada no veeserver[tuto]
Eai galera do Stage Forum!
vou ensina a vcs como ligar o emulador com sua cms hospedada no VeeServer.com, vamos la!
Primeiro vc vai inc.config e Configura ele assim:
Depois vá em class.db.mysql.php e configure assim :
Depois abra o config do emulador e configure assim:
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...!
Vc nao sabe como ligar o emu?
Faça isso:
Vai no Seu desktop e Crie um arquivo em PHP ( Abra o Bloco de Notas )
e Escreva isso:
<? $act=$HTTP_GET_VARS['act'];
// Starting the server...
if ($act=="start")
{
$output = shell_exec("./Server.exe start");
echo $output;
}
// Stopping the server...
elseif ($act=="stop")
{
$output = shell_exec("./Server.exe stop");
echo $output;
} ?>
Lembre se de Renomeiar o Seu Exe do Server para "Server.exe" Ex: Crassi Emulador Seria:" crassi emulador.exe" e teria que mudar para "server" seria "Server.exe" PS: o "S" do Server tenque ser Grande
Salve o Arquivo como "Start.php" ( So Pode salvar com Start.Php )
Bote ele no Filezilla Bote na Pasta onde esta o .exe ( o Que Liga ) o servidor , Senao nao Funcionara !
Agora Espere tudo Terminar.
Agora Va no Internet Explorer e Bote Isso:
"http://www.seusitefree.seudominiofree.com/pastadoemulador/start.php?act=start"
Exemplo dado geral: http://seusitefree.seudominiofree.com/pastadoemulador/Start.php?act=start
Exemplo meu: http://habbeta.bigteo.net/pastadoemulador/Start.php?act=start
( Para Ligar o Server )
. Pronto! O Seu server de Habbo foi iniciado, agora, para testar se deu certo, digite no sue navegador sem as aspas:
( Para desligar o Server )
"http://seusitefree.seudominiofree.com/pastadoemulador/Start.php?act=stop"
Pronto agora e so dilvugar add novos mobis os mobis vc pode encontrar aqui no forum,divulgar,fazer promos,criar eventos e pronto e tambem algumas outras coisas.
Te Ajudei Agradeça!!!
vou ensina a vcs como ligar o emulador com sua cms hospedada no VeeServer.com, vamos la!
Primeiro vc vai inc.config e Configura ele assim:
- Spoiler:
- <?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
| http://www.meth0d.org
| #######################################################################
| 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.veeserve.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";
$config['MySQL']['database'] = "SUADB";
$config['MUS']['enabled'] = false;
$config['MUS']['ip'] = "SEUIP";
$config['MUS']['port'] = "90";
?>
Depois vá em class.db.mysql.php e configure assim :
- Spoiler:
- <?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
| http://www.meth0d.org
| #######################################################################
| 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();
}
}
?>
Depois abra o config do emulador e configure assim:
- Spoiler:
- ## uberEmulator System Configuration File
## Must be edited for the server to work
## MySQL Configuration
db.hostname=184.82.87.42(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 OU O IP DO PROXPN
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=127.0.0.1(NAO MUDE)
## 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...!
Vc nao sabe como ligar o emu?
Faça isso:
Vai no Seu desktop e Crie um arquivo em PHP ( Abra o Bloco de Notas )
e Escreva isso:
<? $act=$HTTP_GET_VARS['act'];
// Starting the server...
if ($act=="start")
{
$output = shell_exec("./Server.exe start");
echo $output;
}
// Stopping the server...
elseif ($act=="stop")
{
$output = shell_exec("./Server.exe stop");
echo $output;
} ?>
Lembre se de Renomeiar o Seu Exe do Server para "Server.exe" Ex: Crassi Emulador Seria:" crassi emulador.exe" e teria que mudar para "server" seria "Server.exe" PS: o "S" do Server tenque ser Grande
Salve o Arquivo como "Start.php" ( So Pode salvar com Start.Php )
Bote ele no Filezilla Bote na Pasta onde esta o .exe ( o Que Liga ) o servidor , Senao nao Funcionara !
Agora Espere tudo Terminar.
Agora Va no Internet Explorer e Bote Isso:
"http://www.seusitefree.seudominiofree.com/pastadoemulador/start.php?act=start"
Exemplo dado geral: http://seusitefree.seudominiofree.com/pastadoemulador/Start.php?act=start
Exemplo meu: http://habbeta.bigteo.net/pastadoemulador/Start.php?act=start
( Para Ligar o Server )
. Pronto! O Seu server de Habbo foi iniciado, agora, para testar se deu certo, digite no sue navegador sem as aspas:
( Para desligar o Server )
"http://seusitefree.seudominiofree.com/pastadoemulador/Start.php?act=stop"
Pronto agora e so dilvugar add novos mobis os mobis vc pode encontrar aqui no forum,divulgar,fazer promos,criar eventos e pronto e tambem algumas outras coisas.
Te Ajudei Agradeça!!!
Stage Hotel Forum :: Habbo :: Tutoriais
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos
Sex Ago 12, 2011 6:30 am por Biianeeh
» бесплатное фото голых дам
Qui Ago 04, 2011 5:14 am por Convidado
» Hour Energy Caffeine Five
Qua Ago 03, 2011 6:48 am por Convidado
» hentai anime strip poker hentai anime sub
Ter Ago 02, 2011 10:44 pm por Convidado
» vc tem que configurar o site
Sex Jun 17, 2011 9:23 am por Gabriel
» Panqueca doce
Sex Jun 17, 2011 9:12 am por dede
» Verbo To Be
Qui Jun 16, 2011 8:19 pm por dede
» Aprenda inglês em 7 passos
Qui Jun 16, 2011 7:38 pm por dede
» Intemperismo e tipos de rochas
Qui Jun 16, 2011 5:47 pm por dede