problemi di scrittura su cartelle aruba

5 contenuti / 0 new
Ultimo contenuto
problemi di scrittura su cartelle aruba

salve,

non riesco ad installare drupal su serv aruba con windows...
rimango sempre bloccato qui:

* The Drupal installer requires that you create a settings file as part of the installation process.
1. Copy the ./sites/default/default.settings.php file to ./sites/default/settings.php.
2. Change file permissions so that it is writable by the web server. If you are unsure how to grant file permissions, please consult the on-line handbook.
More details about installing Drupal are available in INSTALL.txt.
* register_globals is enabled. Drupal requires this configuration directive to be disabled. Your site may not be secure when register_globals is enabled. The PHP manual has instructions for how to change configuration settings. (Currently using PHP register globals Enabled ('1'))
* The directory sites/default/files does not exist. An automated attempt to create this directory failed, possibly due to a permissions problem. To proceed with the installation, either create the directory and modify its permissions manually, or ensure that the installer has the permissions to create it automatically. For more information, please see INSTALL.txt or the on-line handbook.

ho provato a dare i permessi di scrittura alla cartella, l'ho spostata anche in public, ma nulla da fare

qualcuno mi può dare qualche dritta, magari step to step?

grazie
renato

È obbligatorio che tu usi Windows e per giunta su un hosting condiviso? Se è il tuo unico sito su quell'hosting, chiedi il passaggio a Linux.

Su Aruba, per usare Drupal decentemente *devi* usare hosting Linux (in quello win non hai ne GD ne ImageMagick, ne .htaccess).
E comunque, finora, io ho sempre dovuto lanciare l'installazione SENZA il settings.php . Poi quando mi chiede i dati per il DB gli carico il file con la configurazione già fatta.

io ho lo stesso identico problema.
che significa lanciare senza il settings.php?
come si configura da solo il settings.php

Il file settings.php è sule sito tuosito\sites\default\ e bisogna scrivere le direttive esatte, basta aprirlo e vedrai alla riga 88:

* Database URL format:
* $db_url = 'mysql://username:password@localhost/databasename';
* $db_url = 'mysqli://username:password@localhost/databasename';
* $db_url = 'pgsql://username:password@localhost/databasename';

esempio da scrivere senza asterisco:

$db_url = 'mysql://username:password@localhost/databasename';

dove username è il nome utente del db
password è la realtiva parola segreta
databasename è il nome del database

Importante è impostare anche il prefisso personalizzato per eventuale istallazione multipla:

$db_prefix = 'fr_';

Ciao