Perche non puoi fare screen ti aiuto subito clicca il tasto della tua tastiera r sist canc e poi lo apri con paint salvi vai su tinypic e metti il file e copi l'url e poi lo inserisci qui mica e difficile no?
--------------- AGGIUNTA AL POST ---------------
Anche ADA ha il mio stesso problema, hahaha.. xD
--------------- AGGIUNTA AL POST ---------------


E Disistallala! e installi quella 6.1.2 e dovrebbe funzionare!

Chi ha il Dowloand diretto? SENZA CHE SCARICHI TUTTI I FILE ETC ETC?

Me lo procuri? *-*
 
no ma il problema è che ho windwos 7 e non mi fa fare screen ho provato pure come mi hai detto tu rist + canc ma nnt cmq quando avvio l'emulatore dice così :

The environment has initialized successfully. Ready for connections.

Ti aiuto subito apri tastiera su schermo la trovi su accessori accesso facilitato prova a cliccare psc slk brk cliccali tutti e tre poi vai su paint fai incolla e salvi mica e difficile no? bastava solo dirlo a me..
--------------- AGGIUNTA AL POST ---------------
Perche non puoi fare screen ti aiuto subito clicca il tasto della tua tastiera r sist canc e poi lo apri con paint salvi vai su tinypic e metti il file e copi l'url e poi lo inserisci qui mica e difficile no?
--------------- AGGIUNTA AL POST ---------------


Chi ha il Dowloand diretto? SENZA CHE SCARICHI TUTTI I FILE ETC ETC?

Me lo procuri? *-*

Certo ecco qua
Perfavore, Entra oppure Registrati per vedere i Link!
ci sono tutte le versioni di msql cerca la 6.1.2 ci sn 3 file scaricali tutti e vedi dove c'e il setup per installare...
 
Ultima modifica:
Questo ti o detto cerca il download per la versione 6.1.2
Perfavore, Entra oppure Registrati per vedere i Link!
trovi 3 download scaricali tutti e tre e vedi qual'e Che c'e il setup per installarlo Leggili i Post precendi!!
 
Vabe mi sembra che questo emulatore non abbi bisogno di mysql connector perche avvia anche senza mysql connector cmq inesperto fammi una screen del emulatore appena l'avvii voglio vedere che problema hai
 
Vabe mi sembra che questo emulatore non abbi bisogno di mysql connector perche avvia anche senza mysql connector cmq inesperto fammi una screen del emulatore appena l'avvii voglio vedere che problema hai

pietro per favore leggi i miei post-it precedenti ti ho scritto che mi dice quando avvio l'emulatore... :

The environment has initialized successfully. Ready for connections
screen:
2jcyk48.png
 
Ultima modifica:
pietro per favore leggi i miei post-it precedenti ti ho scritto che mi dice quando avvio l'emulatore... :

The environment has initialized successfully. Ready for connections

Non parlavo con te parlavo con inesperto
Cmq per il tuo problema hai cambiato emulatore perche secondo me l'emulatore e come se non funzionasse perche ogni emulatore a un mysql questo no cambiate tutti versione perfavore se volete che il vostro emulatore funzioni.

--------------- AGGIUNTA AL POST ---------------
pietro aggiungimi su MSN: habbo-hogwarts@hotamil.it

Che mi entri con TEAM VIEWER. Veramente ti pago..

Se hai PostPay o carta prepagata.. :L

Inesperto prova come ho detto a dark e se non ti funziona Vediamo di risolverlo cmq alle 20:00 devo andare quindi posso aiutarti domani.
 
Ultima modifica:
Non parlavo con te parlavo con inesperto
Cmq per il tuo problema hai cambiato emulatore perche secondo me l'emulatore e come se non funzionasse perche ogni emulatore a un mysql questo no cambiate tutti versione perfavore se volete che il vostro emulatore funzioni.

--------------- AGGIUNTA AL POST ---------------


Inesperto prova come ho detto a dark e se non ti funziona Vediamo di risolverlo cmq alle 20:00 devo andare quindi posso aiutarti domani.

Dobbiamo cambiare versione di cosa? HELP!
 
Ragà cmq io ho risolto a me funziona tutto sia client, cms ed emulatore ma nn posso postare una guida xk dicono che è vietato però in PM posso aiutare quindi magari uno alla volta o in PM o msn e vi aiuto
 
Dobbiamo cambiare versione di cosa? HELP!


Del emulatore
--------------- AGGIUNTA AL POST ---------------
Ragà cmq io ho risolto a me funziona tutto sia client, cms ed emulatore ma nn posso postare una guida xk dicono che è vietato però in PM posso aiutare quindi magari uno alla volta o in PM o msn e vi aiuto

Cmq mi fai sto favore non ne posso + con questi xD copia la configurazione del inc.config e la configurazione del emulatore cosi almeno risolvono il problema :emoji_smiley:
 
Ultima modifica:
pietro secondo te potrebbe essere qualcosa incorretta qui nel class.db.mysql?

:

<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d' and updates by Matthew 'MDK'
|
Perfavore, Entra oppure Registrati per vedere i Link!
&
Perfavore, Entra oppure Registrati per vedere i 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 = "root";
private $password = "password2";
private $database = "Uber_DB";
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();
}
}

?>
 
so ora vi posto il inc.config configurazione emulatore page-client
--------------- AGGIUNTA AL POST ---------------
aspettate na 10 di minuti il tempo di fare screen
 
Ultima modifica:
pietro secondo te potrebbe essere qualcosa incorretta qui nel class.db.mysql?

:

<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d' and updates by Matthew 'MDK'
|
Perfavore, Entra oppure Registrati per vedere i Link!
&
Perfavore, Entra oppure Registrati per vedere i 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 = "root";
private $password = "password2";
private $database = "Uber_DB";
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();
}
}

?>

Non penso qui cmq io devo andare puttroppo tra 5 minuti se italiy4love ti mette uno screen di come a configurato lui il file inc.config e il file uber-config che si trova nella cartella del uber emu forse puoi risolvere il problema xk a lui funziona io puttroppo devo andare..
 
Entra su MSN! *-*

Fatti dare Uno screen di come a configurato l'inc.config e l'uber-config da italy4love xk a detto che a lui funziona anche a me funzionava Prima adesso io ho un retroServer xo con un server creato da me con beta. Puttroppo per oggi non posso aiutarti xk Io devo andare x questo e non posso aiutarti domani posso aiutarti.
 
ECCO IL MIO inc-config

<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d' and updates by Matthew 'MDK'
|
Perfavore, Entra oppure Registrati per vedere i Link!
&
Perfavore, Entra oppure Registrati per vedere i 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://localhost/";
$config['Site']['hash_secret'] = "xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\$OIFThrR_gh(ugf*/";

$config['MySQL']['hostname'] = "localhost";
$config['MySQL']['username'] = "root";
$config['MySQL']['password'] = "mia password";
$config['MySQL']['database'] = "uberdb";

$config['MUS']['enabled'] = false;
$config['MUS']['ip'] = "127.0.0.1";
$config['MUS']['port'] = 30001;

?>

Ecco il PAGE CLIENT.

<body id="client" class="flashclient">

<script type="text/javascript">
var habboDefaultClientPopupUrl = "%www%/client";
</script>

<noscript>
<meta http-equiv="refresh" content="0;url=%www%/client/nojs" />
</noscript>

<script type="text/javascript">
FlashExternalInterface.loginLogEnabled = true;

FlashExternalInterface.logLoginStep("web.view.start");

if (top == self) {
FlashHabboClient.cacheCheck();
}
var flashvars = {
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "miosito.zapto.org",
"connection.info.port" : "30001",
"site.url" : "miosito.zapto.org",
"url.prefix" : "miosito.zapto.org",
"client.reload.url" : "%www%/account/reauthenticate?page=/flash_client",
"client.fatal.error.url" : "%www%/flash_client_error",
"client.connection.failed.url" : "%www%/client_connection_failed",
"external.hash" : "",
"external.variables.txt" : "%www%/gamedata/external?id=external_variables",
"external.texts.txt" : "%www%/gamedata/external?id=external_flash_texts",
"use.sso.ticket" : "1",
<?php

if ($forwardType > 0)
{
echo ' "forward.type" : "' . $forwardType . '",' . LB;
echo ' "forward.id" : "' . $forwardId . '",' . LB;
}

?>
"sso.ticket" : "%sso_ticket%",
"processlog.enabled" : "0",
"account_id" : "0",
"client.starting" : "Welcome to Habbo, powered by UberCMS!",
"flash.client.url" : "%flash_client_url%",
"user.hash" : "",
"facebook.user" : "0",
"has.identity" : "0",
"flash.client.origin" : "popup"
};
var params = {
"base" : "%flash_base%",
"allowScriptAccess" : "always",
"menu" : "false"
};

if (!(HabbletLoader.needsFlashKbWorkaround())) {
params["wmode"] = "opaque";
}

var clientUrl = "%flash_base%Habbo10.swf";
try {
if (swfobject.getFlashPlayerVersion().major <= 9) {
clientUrl = "%flash_base%Habbo.swf";
}
} catch(e) {}
swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "9.0.115", "http://images.habbo.com/habboweb/%web_build%/web-gallery/flash/expressInstall.swf", flashvars, params);
</script>

<div id="overlay"></div>
<div id="client-ui" >
<div id="flash-wrapper">
<div id="flash-container">
<div id="content" style="width: 400px; margin: 20px auto 0 auto; display: none">
<div class="cbb clearfix">
<h2 class="title">Please install Adobe Flash Player.</h2>
<div class="box-content">
<p>You can install and download Adobe Flash Player here: <a href="http://get.adobe.com/flashplayer/">Install flash player</a>. More instructions for installation can be found here: <a href="http://www.adobe.com/products/flashplayer/productinfo/instructions/">More information</a></p>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://images.habbo.com/habboweb/45_0061af58e257a7c6b931c91f771b4483/2/web-gallery/v2/images/client/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
</div>
</div>
<script type="text/javascript">
$('content').show();
</script>
<noscript>
<div style="width: 400px; margin: 20px auto 0 auto; text-align: center">
<p>If you are not automatically redirected, please <a href="/client/nojs">click here</a></p>
</div>
</noscript>
</div>
</div>
<div id="content" class="client-content"></div>
</div>
<div style="display: none">
<div id="habboCountUpdateTarget">
%hotel_status%
</div>
<script language="JavaScript" type="text/javascript">
setTimeout(function() {
HabboCounter.init(600);
}, 20000);
</script>
</div>
<script type="text/javascript">
RightClick.init("flash-wrapper", "flash-container");
</script>

</body>
</html>