info:drupal_install_notes

install notes new using composer

https://www.drupal.org/docs/develop/using-composer/using-composer-to-install-drupal-and-manage-dependencies#download-core

composer create-project drupal/recommended-project my_site_name_dir
composer require drush/drush
drush site:install

install notes old 2008

Fred Radeff 2008/11/27 14:57

télécharger et installer drupal;

commencer l'install

ajouter le dictionnaire (pour moi fr-6.x-1.x-dev.tar.gz)

cd /w3/drupal
cp ./sites/default/default.settings.php ./sites/default/settings.php
chmod 777 ./sites/default/settings.php
chmod -R 777 sites/default/

db drupal
user drupal
passwd sbRYMJaHjMBQATrP

mysql
create database drupal;
#CREATE USER 'drupal'@'localhost' IDENTIFIED BY '****************';
GRANT ALL PRIVILEGES ON `drupal` . * TO 'drupal'@'localhost' WITH GRANT OPTION ;
SET PASSWORD FOR drupal@host = password( 'sbRYMJaHjMBQATrP' );

on continue l'intall puis

sudo chmod -R 755 sites/default/

login fred admin gt

http://localhost/unige/drupal/

c'est effectivement très vite installé, et ça semble simple à prendre en main… à creuser!

drupal tutorial

drupal multisite

API

books

  • info/drupal_install_notes.txt
  • Dernière modification : 2020/08/17 14:42
  • de radeff