Cambiato xampp dal 1.7.7 al 1.7.3 configuriamo (UberCMS-DB come prova) e appare quest'errore:
Qual'è il problema? :|
Perfavore,
Entra
oppure
Registrati
per vedere i Link!
Qual'è il problema? :|
Se hai provato tutte le versioni ti consiglio di installare iis.Cambiato xampp dal 1.7.7 al 1.7.3 configuriamo (UberCMS-DB come prova) e appare quest'errore:Perfavore, Entra oppure Registrati per vedere i Link!
Qual'è il problema? :|
Ecco:
<?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 = "Nick PSW(Sicuro sia quella messa)";
private $database = "Nick DB (Sono sicuro sia quello messo)";
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();
}
}
?>
Where is the problem? :\
Vedi se ti da lo stesso problema con un holo.Cambiato xampp dal 1.7.7 al 1.7.3 configuriamo (UberCMS-DB come prova) e appare quest'errore:Perfavore, Entra oppure Registrati per vedere i Link!
Qual'è il problema? :|
Noi e terze parti selezionate utilizziamo cookie o tecnologie simili per finalità tecniche e, con il tuo consenso, anche per altre finalità come specificato nella cookie policy. Usa il pulsante “Accetta” per acconsentire l'utilizzo di tutti i cookies. In alternativa puoi fare clic sul pulsante “Continua senza accettare” per negare il consenso o su "Gestisci le tue preferenze" per accedere a informazioni più dettagliate e modificare le tue preferenze prima di acconsentire.