===== Instalace Drupalu ===== Ujistit se, že apache(2) umí pracovat s php scripty. V httpd.conf by mělo být něco podobného tomuto: DocumentRoot "/usr/local/www/drupal" AllowOverride Options FileInfo Limit Indexes AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps DirectoryIndex index.php index.html ==== Instalace mysql databáze ==== Vytvoření databáze: $ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 to server version: 5.1.11-beta Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> CREATE DATABASE drupal; mysql> GRANT ALL PRIVILEGES ON drupal.* TO drupal@localhost IDENTIFIED BY 'a secret password'; mysql> quit;