Non riesco a installare drupal

4 contenuti / 0 new
Ultimo contenuto
Non riesco a installare drupal

Ciao a tutti. Sto diventando matto. Ho fatto 2 siti tempo fa, ora devo farne un altro.
Bene... Ho installato drupal e xampp.

Ho seguito un video tutorial, creato un database in xampp, creato utenti con tutti i permessi.
Non riesco però a installare durola in localhost.
Mi dice sempre la seguente cosa:
"
In order for Drupal to work, and to continue with the installation process, you must resolve all issues reported below. For more help with configuring your database server, see the installation handbook. If you are unsure what any of this means you should probably contact your hosting provider.

Failed to connect to your database server. The server reports the following message: SQLSTATE[28000] [1045] Access denied for user 'drupaluser'@'localhost' (using password: NO).

Is the database server running?
Does the database exist, and have you entered the correct database name?
Have you entered the correct username and password?
Have you entered the correct database hostnam
"
Aiutatemi vi prego.... Che devo fa???

Drupal Version:

Ciao,
prova a verificar ei dati inseriti nel settings.php, il problema è sicuramente li.

Ti ricordo che in D6 la sintassi di configurazione è:
$db_url = 'mysql://username:password@localhost/databasename';

In D7 è:

$databases = array (
  'default' =>
  array (
    'default' =>
    array (
      'database' => 'databasename',
      'username' => 'username',
      'password' => 'password',
      'host' => 'localhost',
      'port' => '',
      'driver' => 'mysql',
      'prefix' => '',
    ),
  ),
);

Una domanda, è la prima volta che installi Drupal in questo ambiente o ce ne sono altri?

Ciao
Ioris

Ma no, ho fatto 2 siti con drupal... ora non riesco piu' a partire...
Provo a fare come dici tu... Ma cosa devo verificare in settings.php?

CIao,
dovresti verificare che i dati siano corretti.

Gli altri siti residenti su questo server funzionano con gli stessi parametri?

Ciao
Ioris