Problema Connessione

Bobbina

Nuovo utente
Autore del topic
11 Settembre 2010
40
0
Miglior risposta
0
Allora Ho Creato Un Retro Server Con Enox CMS e Enox Db Ma Non Apre DOpo Aver Messo il Database Su localHost e Aver COnfigurato i File: Inc.Configuration e ClassDb.mysql
Ho Creato La rete hamachi Ma non apre
Mi spunta questo:
5.147.107.109


Spero Mi Potrete Aiutare ;)
 
Ultima modifica:
Riferimento: Ne Risolvo Uno..Ne Spunta un'Altro

Intanto segnalo per nome non idoneo al Post, poi, lo Screen non si vede, che errore ti esce?​
 
Riferimento: Ne Risolvo Uno..Ne Spunta un'Altro

Impossibile collegarsi a 5.147.107.109.
Suggerimenti:
Ricarica: 5.*147.*107.*109
Effettua la ricerca
 
Riferimento: Ne Risolvo Uno..Ne Spunta un'Altro

Impossibile collegarsi a 5.147.107.109.
Suggerimenti:
Ricarica: 5.*147.*107.*109
Effettua la ricerca

Avrai sicuramente configurato in mal modo.

Ricontrolla il file inc.config.php, e rivedi la configurazione.

Su $config['Site']['www'] = Metti il tuo IP di Hamachi.

Facci sapere.​
 
Riferimento: Connessione

Allora Ho ConFigurato TUtto Bene e Se Ci Sono Errori Controllate ;)

<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
|
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 = "Mia Pass";
private $database = "SplashDB";
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();
}
}

?>
--------------- AGGIUNTA AL POST ---------------
Quello Di Prima Era Class.Db.mysql

Ora inc.COnfiguration:

<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
|
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://5.147.107.209";
$config['Site']['hash_secret'] = "xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\$OIFThrR_gh(ugf*/";

$config['MySQL']['hostname'] = "localhost";
$config['MySQL']['username'] = "root";
$config['MySQL']['password'] = "196848";
$config['MySQL']['database'] = "SplashDB";

$config['MUS']['enabled'] = false;
$config['MUS']['ip'] = "5.147.107.209";
$config['MUS']['port'] = "2001";

?>
 
Ultima modifica:
Riferimento: Connessione

Devi sempre tenere hamachi aperto, e xampp runnato su "Apache" & "MySql".
 
Riferimento: Connessione

Niente :S
 
Ultima modifica:
Riferimento: Connessione

Non Sono Pratica Che devo Fare :SSSSSS Cosa devo sistemarlo?
 
Riferimento: Connessione

Allora Credo sia Perchè Forse non hai Configuratoi Emu