SlideShare une entreprise Scribd logo
1  sur  65
Télécharger pour lire hors ligne
Intro to Drupal
Gerald Villorente
OpenSource Developer
Agenda
●
Installation
●
Anatomy
●
Terminologies
Installation
System Requirements
●
Web Server – Apache, Nginx, IIS, Lighttpd
●
Database Server
– Drupal 6: MySQL 4.1 or higher, PostgreSQL 7.1,
– Drupal 7: MySQL 5.0.15 or higher with PDO, PostgreSQL 8.3 or higher
with PDO, SQLite 3.3.7 or higher
– Drupal 8: MySQL 5.0.15/MariaDB/Percona/equivalent or higher with
PDO and an InnoDB-compatible primary storage engine, PostgreSQL
8.3 or higher with PDO, SQLite 3.3.7 or higher
– Microsoft SQL Server and Oracle are supported by additional modules.
– More details about database requirements.
System Requirements
●
PHP
– Drupal 6: PHP 5.2.x only. Warning: support for PHP 4.x has
been dropped. PHP 5.3 and later may produce errors or
unexpected behaviour.
– Drupal 7: PHP 5.2.5 or higher (5.3 recommended).
– Drupal 8: PHP 5.4 or higher.
– More details about PHP requirements, including PHP
memory.
Download and extract Drupal
Drupal is available in two supported versions (the most
recent and the previous). The "recommended release" is the
latest stable release of that version. To learn more about
versions, see the Drupal version information page.
On many *nix computers the path from the server's root
will be /var/www/, so cd /var/www/. On a shared server, or a
server that hosts multiple domains, the path will be
different (try cd ~/www or cd ~/public_html).
Download and extract Drupal
Download Drupal using any download utility, the two most
popular of which are wget and curl. Not every computer has
both.
The commands are, respectively:
$ wget http://ftp.drupal.org/files/projects/drupal-x.x.tar.gz
or
$ curl -O http://drupal.org/files/projects/drupal-x.x.tar.gz
Note: The option for the curl command is the upper case
letter "O" and not the numeral that stands for zero.
Download and extract Drupal
Replace the "http://drupal.org/files/projects/drupal-x.x.tar.gz"
string in the commands with the link for the version
you will be installing. To get links to recent versions,
visit https://drupal.org/project/drupal. Don't visit
http://ftp.drupal.org/files/projects unless you have to,
because it takes long to serve (it lists many files).
Download and extract Drupal
Extracting Drupal
Type the following command (replacing "x.x" with your
downloaded version's number):
$ tar -xzvf drupal-x.x.tar.gz
Remove the compressed version of the file by using the
following command:
$ rm drupal-x.x.tar.gz
Download and extract Drupal
Moving Drupal to its intended location
Now you need to move the contents of the drupal-x.x directory
one level "up" into the web server's document root or your
public HTML directory:
$ mv drupal-x.x/* drupal-x.x/.htaccess ./
For Drupal 7 also add
$ mv drupal-x.x/.gitignore ./
Delete drupal-x.x
$ rmdir drupal-x.x
Create the database
Note: Since 8.x, Drupal can create the database itself if
its database user has enough privileges. See the
relevant change notice.
Before running the installation script, you must create
an empty database and database user (a user name
assigned the rights to use the Drupal database).
Create the database
Tools you can use to create database.
●
PHPMyAdmin
●
MySQL shell
●
mysqladmin command
●
Chive
Create the database
MySQL shell
$ mysql -u root -p
mysql> CREATE DATABASE drupal7;
Create a new user called YOURNAME for database called DB_NAME:
mysql> GRANT ALL ON drupal7.* TO gerald@localhost IDENTIFIED BY 'qwerty';
How do I connect to MySQL database drupal7 using gerald
account?
$ mysql -u gerald -p drupal7
Create the settings.php file
Your Drupal download comes with a sample configuration
file at sites/default /default.settings.php.
Before you run the installation script, you must copy the
configuration file as a new file called settings.php file and
then set some permissions.
$ cp sites/default/default.settings.php sites/default/settings.php
To make the settings.php file writeable and to allow the
installer to edit the file, use:
$ chmod a+w sites/default/settings.php
Create the settings.php file
Note: Be sure to change the file's permissions back after
you have run the installation script. Those permissions
should be:
$ chmod 644 settings.php
$ chmod 755 ../default
Create the files directory
To let the files directory be created automatically, give
the web server write privileges to the sites/default
directory.
$ chmod a+w sites/default
Or you can create it manually
$ mkdir sites/default/files
$ chmod o+w sites/default/files
Run the installation script
You can run the installation script by simply calling
http://localhost. If you created a VirtualHost then you have an option to define your
ServerName (domain name). Like the one below.
<VirtualHost *:80>
# Your /etc/host is expected to have an
# entry like this “127.0.0.1 local.drupal7.dev”
ServerName local.drupal7.dev
DocumentRoot /var/www/drupal7
<Directory /var/www/drupal7/>
Allow Override All
# This is required if you're
# using Apache 2.4.x
Require all granted
</VirtualHost>
Installation Process
Installation Process
Installation Process
Installation Process
Installation Process
Installation Process
Installation Process
Changing settings.php permission
Secure your site
After the installation is complete, you will want to change the
permissions on the settings.php file back so that it is protected:
$ chmod u=rw,o=r,a=r sites/default/settings.php
OR
$ chmod 644 sites/default/settings.php
If you make manual changes to the settings.php file later, be sure to
protect it again after making your modifications.
Important: Failing to remove write permissions to the settings.php
file is a security risk.
Set up cron
Setting up cron is an important step in the installation of the
website and assists in the maintenance of the site's assets for search
results, checking for updates to Drupal core and modules, and
removing temporary files.
A properly configured cron job can manage a variety of tasks:
●
The Search module that indexes the website's content.
●
The Aggregator module's that retrieves feeds.
●
The Ping module that notifies other sites of updates.
●
The System module that performs routine maintenance tasks,
such as pruning of logs.
Set up cron
Enabling cron
In Drupal 8 you can enable cron via Menu > Configuration > System >
Cron (admin/config/system/cron). The default frequency is every three
hours. Cron will then be triggered by end users visiting your site,
no more frequently than every three hours. Note that for low-
traffic sites it can also be desirable to create a cron job.
In Drupal 7 you can enable cron via the Administration > Configuration
> System > Cron (admin/config/system/cron).
In Drupal 6 you need to create a cron job or use Poormanscron.
Set up cron
Disabling cron
For performance reasons it may be desirable to disable cron.
You can disable cron (e.g., at Administration > Configuration > System > Cron
(admin/config/system/cron), by setting the "Run cron every" value to
"Never".
Another way to disable cron is to add the following line to your
settings.php:
$conf['cron_safe_threshold'] = 0;
Note that this fixes the setting at admin/config/system/cron to "Never",
and administrative users cannot override it.
Configure clean URLs
By default, Drupal uses and generates URLs for your
site's pages that look like "http://www.example.com/?
q=node/83".
With so-called clean URLs this would be displayed
without the "?q=" as "http://www.example.com/node/83".
Anatomy
Drupal Structure
Note: Do not touch anything other than sites folder, unless you have
to upgrade/update the core or you're creating your own profile.
Drupal Structure
Drupal Structure
Drupal Structure
Drupal Structure
Terminologies
anonymous
A visitor to a Drupal website who is not currently logged
in. Drupal considers any such visitor as being the
anonymous user, with the user ID 0, and belonging to
the anonymous user role.
API
An application programming interface (API) is a
particular set of rules (“code”) and specifications that
software programs can follow to communicate with
each other. Within Drupal there is the API Reference
which contains documentation for developers. There is
also a Form API and Field API
argument
A section of the path for a page on a Drupal website. In
the path /node/937 the first argument is “node”, and
the second is “937”. Some modules, most notably
Views, allow the use of “wildcard” arguments that
allow a particular page to vary depending on context.
Basic page
One of two content types that are enabled in the
standard installation profile. Typically basic pages are
used for static content that can (but are not required to)
be linked into the main navigation bar. This content
type is called "Basic page" in Drupal 7 and later, and
"Page" in earlier versions of Drupal.
Base theme
A Base theme is a well-written set of CSS and template
files that a theme developer can make use of in a new
custom theme. Theme developers can make sub themes
to override the default base theme. Some of the popular
base themes include Zen, Omega and AdaptiveTheme
block
The boxes visible in the regions of a Drupal website.
Most blocks (e.g. recent forum topics) are generated on-
the-fly by various Drupal modules, but they can be
created in the administer blocks area of a Drupal site.
See the documentation for more information on blocks.
cache
The core Drupal cache stores assembled pages and
blocks for anonymous visitors in the cache tables in the
database. Other popular Drupal caching options include
boost, memcache, and authcache.
Content type
Every node belongs to a single “node type” or “content
type”, which defines various default settings for nodes of
that type, such as whether the node is published
automatically and whether comments are permitted.
Common "Content Types" that just about any website
would have include: blog post and page. Content types can
have different fields and modules can define their own
content types. The core Drupal Book and Poll modules are
two examples of modules that define content types.
contrib
Contributed modules or themes that are not part of the
core Drupal product. Contributed modules and themes
are available for separate download from the modules
and themes sections of Drupal.org downloads. These are
separate from the Drupal “core”, although over time
they can become part of it. Similar concepts exist in
other software and are sometimes called “plugins”,
“add-ons” or “extensions”.
core
The files and modules included with the Drupal project
download.
cron
A command scheduler that executes commands or
scripts (e.g. scripts to backup a database) automatically
at specified time and date intervals. Drupal uses a “cron
job” to perform periodic tasks that help Drupal to run
smoothly and efficiently.
fields
Elements of data that can be attached to a node or
other Drupal entities. Fields commonly contain text,
image, or terms.
hook
A PHP function that is named foo_bar(), where “foo” is
the name of the module (whose filename is thus
foo.module) and “bar” is the name of the hook. Each
hook has a defined set of parameters and a specified
result type.
NID
Node ID. The unique identifier for each node. It can be
found in the path to the node. For example, a node with
path, “http://drupal.org/node/937”, has a node ID of
“937”.
permission
In Drupal, a tool for controlling access to content creation,
modification and site administration at the application level.
Administrators assign permissions to roles, then assign roles
to users. The first user of a Drupal site (User1) automatically
receives all permissions.
In operating systems like UNIX, permissions are security
settings restricting or allowing users to access information or
perform certain functions at the operating system level. In the
case of files on UNIX systems, there are three types of
permissions: read, write and execute.
published
The state of a node that can be viewed by visitors to the
website. To easily hide nodes from the public (i.e.
anonymous role), make the node unpublished by
unchecking “Published” in the node add/edit form.
region
Defined areas of a page where content can be placed.
Basic regions include: Header, Footer, Content, Left
sidebar, Right Sidebar. Different themes can define
different regions so the options are often different per-
site. Content is assigned to regions via blocks. They can
be ordered by weight within regions to define the order
in which they display.
roles
Sets of permissions that can be applied to individual
users. Users can belong to more than one role. Two
roles, authenticated users (those users that sign up for
an account) and anonymous users (those either without
an account or not logged in), are supplied by default
with Drupal installations. Drupal allows creating
additional roles.
taxonomy
In Drupal, "Taxonomy" is the name of a powerful core
module that gives your sites use of terms. In Drupal,
these terms are gathered within vocabularies which the
Taxonomy module allows you to create, manage and
apply.
teaser
A short introductory sentence or paragraph about a
piece of content that informs readers about the subject
of the content. By default, the first paragraph or two of
the content is used (there is a setting for how much),
usually with a link to the complete node.
template
A file to express presentation (vs. program logic).
Templates are mostly HTML with special PHP variables.
The variables in templates substitute in values provided
by a theme.
term
An organizational keyword, known in other systems as
categories or metadata. A term is a label that can be
applied to a node. They are also known as tags.
theme
A file or collection of files (PHP, INFO, CSS, JPG, GIF,
PNG), which together determine the look and feel of a
site. A theme contains elements such as the header,
icons, block layout, etc.
Drupal modules define themeable functions which can
be overridden by the theme file. There are additional
themes available in the themes section of downloads.
uid
User ID. The unique identifier for each user. It can be
found in the path to the user profile, e.g.
“http://drupal.org/user/1”
user1
The first user created on installation and granted
additional (all) permissions. This user is referred to as
the site maintenance account in Drupal 7.
vocabulary
A vocabulary is a collection of terms.
weight
A term used by Drupal to define the priority or order in
which a function is processed or a block / node is
displayed. From Drupal 6, the weight field is adjusted
dynamically using a drag-and-drop interface.
Note: A lower weight value (-10) will float to the top of
lists, while heavier (+10) weights will appear lower in
lists.
Thank You
Credits
● Drupal Documentation Team

Contenu connexe

Tendances

Apache2 BootCamp : Getting Started With Apache
Apache2 BootCamp : Getting Started With ApacheApache2 BootCamp : Getting Started With Apache
Apache2 BootCamp : Getting Started With ApacheWildan Maulana
 
Drupal Now! - Introduction to Drupal
Drupal Now! - Introduction to DrupalDrupal Now! - Introduction to Drupal
Drupal Now! - Introduction to DrupalAlozie Nwosu
 
httpd — Apache Web Server
httpd — Apache Web Serverhttpd — Apache Web Server
httpd — Apache Web Serverwebhostingguy
 
Drupal 8 Configuration Management with Features
Drupal 8 Configuration Management with FeaturesDrupal 8 Configuration Management with Features
Drupal 8 Configuration Management with FeaturesNuvole
 
R hive tutorial supplement 2 - Installing Hive
R hive tutorial supplement 2 - Installing HiveR hive tutorial supplement 2 - Installing Hive
R hive tutorial supplement 2 - Installing HiveAiden Seonghak Hong
 
APACHE
APACHEAPACHE
APACHEARJUN
 
R hive tutorial supplement 1 - Installing Hadoop
R hive tutorial supplement 1 - Installing HadoopR hive tutorial supplement 1 - Installing Hadoop
R hive tutorial supplement 1 - Installing HadoopAiden Seonghak Hong
 
Configuration Management in Drupal 8: A preview (DrupalCamp Alpe Adria 2014)
Configuration Management in Drupal 8: A preview (DrupalCamp Alpe Adria 2014)Configuration Management in Drupal 8: A preview (DrupalCamp Alpe Adria 2014)
Configuration Management in Drupal 8: A preview (DrupalCamp Alpe Adria 2014)Nuvole
 
Drupal Performance - SerBenfiquista.com Case Study
Drupal Performance - SerBenfiquista.com Case StudyDrupal Performance - SerBenfiquista.com Case Study
Drupal Performance - SerBenfiquista.com Case Studyhernanibf
 
Apache installation and configurations
Apache installation and configurationsApache installation and configurations
Apache installation and configurationsNikhil Jain
 
Drupal 8 CMI on a Managed Workflow
Drupal 8 CMI on a Managed WorkflowDrupal 8 CMI on a Managed Workflow
Drupal 8 CMI on a Managed WorkflowPantheon
 
Sergei Stryukov.Drush.Why it should be used.DrupalCamp Kyiv 2011
Sergei Stryukov.Drush.Why it should be used.DrupalCamp Kyiv 2011Sergei Stryukov.Drush.Why it should be used.DrupalCamp Kyiv 2011
Sergei Stryukov.Drush.Why it should be used.DrupalCamp Kyiv 2011camp_drupal_ua
 
Drupal 8 Configuration Management
Drupal 8 Configuration ManagementDrupal 8 Configuration Management
Drupal 8 Configuration ManagementPhilip Norton
 
Drupalxamppxp 1229687989691791 1
Drupalxamppxp 1229687989691791 1Drupalxamppxp 1229687989691791 1
Drupalxamppxp 1229687989691791 1beckman16
 
Linux Webserver Installation Command and GUI.ppt
Linux Webserver Installation Command and GUI.pptLinux Webserver Installation Command and GUI.ppt
Linux Webserver Installation Command and GUI.pptwebhostingguy
 
Configuration Management in Drupal 8: A preview (DrupalDays Milano 2014)
Configuration Management in Drupal 8: A preview (DrupalDays Milano 2014)Configuration Management in Drupal 8: A preview (DrupalDays Milano 2014)
Configuration Management in Drupal 8: A preview (DrupalDays Milano 2014)Nuvole
 

Tendances (20)

Apache2 BootCamp : Getting Started With Apache
Apache2 BootCamp : Getting Started With ApacheApache2 BootCamp : Getting Started With Apache
Apache2 BootCamp : Getting Started With Apache
 
Drupal Now! - Introduction to Drupal
Drupal Now! - Introduction to DrupalDrupal Now! - Introduction to Drupal
Drupal Now! - Introduction to Drupal
 
httpd — Apache Web Server
httpd — Apache Web Serverhttpd — Apache Web Server
httpd — Apache Web Server
 
Dc kyiv2010 jun_08
Dc kyiv2010 jun_08Dc kyiv2010 jun_08
Dc kyiv2010 jun_08
 
Drupal 8 Configuration Management with Features
Drupal 8 Configuration Management with FeaturesDrupal 8 Configuration Management with Features
Drupal 8 Configuration Management with Features
 
R hive tutorial supplement 2 - Installing Hive
R hive tutorial supplement 2 - Installing HiveR hive tutorial supplement 2 - Installing Hive
R hive tutorial supplement 2 - Installing Hive
 
APACHE
APACHEAPACHE
APACHE
 
Apache Web Server Setup 2
Apache Web Server Setup 2Apache Web Server Setup 2
Apache Web Server Setup 2
 
R hive tutorial supplement 1 - Installing Hadoop
R hive tutorial supplement 1 - Installing HadoopR hive tutorial supplement 1 - Installing Hadoop
R hive tutorial supplement 1 - Installing Hadoop
 
Installing AtoM with Ansible
Installing AtoM with AnsibleInstalling AtoM with Ansible
Installing AtoM with Ansible
 
Configuration Management in Drupal 8: A preview (DrupalCamp Alpe Adria 2014)
Configuration Management in Drupal 8: A preview (DrupalCamp Alpe Adria 2014)Configuration Management in Drupal 8: A preview (DrupalCamp Alpe Adria 2014)
Configuration Management in Drupal 8: A preview (DrupalCamp Alpe Adria 2014)
 
Drupal Performance - SerBenfiquista.com Case Study
Drupal Performance - SerBenfiquista.com Case StudyDrupal Performance - SerBenfiquista.com Case Study
Drupal Performance - SerBenfiquista.com Case Study
 
Apache installation and configurations
Apache installation and configurationsApache installation and configurations
Apache installation and configurations
 
Drupal 8 CMI on a Managed Workflow
Drupal 8 CMI on a Managed WorkflowDrupal 8 CMI on a Managed Workflow
Drupal 8 CMI on a Managed Workflow
 
Sergei Stryukov.Drush.Why it should be used.DrupalCamp Kyiv 2011
Sergei Stryukov.Drush.Why it should be used.DrupalCamp Kyiv 2011Sergei Stryukov.Drush.Why it should be used.DrupalCamp Kyiv 2011
Sergei Stryukov.Drush.Why it should be used.DrupalCamp Kyiv 2011
 
Drupal 8 Configuration Management
Drupal 8 Configuration ManagementDrupal 8 Configuration Management
Drupal 8 Configuration Management
 
Drupalxamppxp 1229687989691791 1
Drupalxamppxp 1229687989691791 1Drupalxamppxp 1229687989691791 1
Drupalxamppxp 1229687989691791 1
 
Creating custom themes in AtoM
Creating custom themes in AtoMCreating custom themes in AtoM
Creating custom themes in AtoM
 
Linux Webserver Installation Command and GUI.ppt
Linux Webserver Installation Command and GUI.pptLinux Webserver Installation Command and GUI.ppt
Linux Webserver Installation Command and GUI.ppt
 
Configuration Management in Drupal 8: A preview (DrupalDays Milano 2014)
Configuration Management in Drupal 8: A preview (DrupalDays Milano 2014)Configuration Management in Drupal 8: A preview (DrupalDays Milano 2014)
Configuration Management in Drupal 8: A preview (DrupalDays Milano 2014)
 

Similaire à Introduction to Drupal - Installation, Anatomy, Terminologies

13th Sep - Drupal Global Training Day by TCS - Drupal core advanced overview
13th Sep - Drupal Global Training Day by TCS - Drupal core advanced overview13th Sep - Drupal Global Training Day by TCS - Drupal core advanced overview
13th Sep - Drupal Global Training Day by TCS - Drupal core advanced overviewDrupalMumbai
 
Cms drupal installation & configuration anil mishra
Cms drupal installation & configuration   anil mishraCms drupal installation & configuration   anil mishra
Cms drupal installation & configuration anil mishraAnil Mishra
 
Improving your Drupal 8 development workflow DrupalCampLA
Improving your Drupal 8 development workflow DrupalCampLAImproving your Drupal 8 development workflow DrupalCampLA
Improving your Drupal 8 development workflow DrupalCampLAJesus Manuel Olivas
 
LuisRodriguezLocalDevEnvironmentsDrupalOpenDays
LuisRodriguezLocalDevEnvironmentsDrupalOpenDaysLuisRodriguezLocalDevEnvironmentsDrupalOpenDays
LuisRodriguezLocalDevEnvironmentsDrupalOpenDaysLuis Rodríguez Castromil
 
Drupal 7x Installation - Introduction to Drupal Concepts
Drupal 7x Installation - Introduction to Drupal ConceptsDrupal 7x Installation - Introduction to Drupal Concepts
Drupal 7x Installation - Introduction to Drupal ConceptsMicky Metts
 
Drupal 8 improvements for developer productivity php symfony and more
Drupal 8 improvements for developer productivity  php symfony and moreDrupal 8 improvements for developer productivity  php symfony and more
Drupal 8 improvements for developer productivity php symfony and moreAcquia
 
Introduction To Drupal
Introduction To DrupalIntroduction To Drupal
Introduction To DrupalLauren Roth
 
Drupal Installation &amp; Configuration
Drupal Installation &amp; ConfigurationDrupal Installation &amp; Configuration
Drupal Installation &amp; ConfigurationAnil Mishra
 
Drupal Checklist for Site Builder and Web admin
Drupal Checklist for Site Builder and Web adminDrupal Checklist for Site Builder and Web admin
Drupal Checklist for Site Builder and Web adminAdolfo Nasol
 
Rapid site production with Drupal
Rapid site production with DrupalRapid site production with Drupal
Rapid site production with DrupalRob Sawyer
 
Taking your site from Drupal 6 to Drupal 7
Taking your site from Drupal 6 to Drupal 7Taking your site from Drupal 6 to Drupal 7
Taking your site from Drupal 6 to Drupal 7Phase2
 
Lean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and DrushLean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and DrushPantheon
 
Drupal Deployment Troubles and Problems
Drupal Deployment Troubles and ProblemsDrupal Deployment Troubles and Problems
Drupal Deployment Troubles and ProblemsAndrii Lundiak
 
Anthony McKeown Drupal Presentation
Anthony McKeown Drupal PresentationAnthony McKeown Drupal Presentation
Anthony McKeown Drupal PresentationTony McKeown
 
Help! I inherited a Drupal Site! - DrupalCamp Atlanta 2016
Help! I inherited a Drupal Site! - DrupalCamp Atlanta 2016Help! I inherited a Drupal Site! - DrupalCamp Atlanta 2016
Help! I inherited a Drupal Site! - DrupalCamp Atlanta 2016Paul McKibben
 
Serving Moodle Presentation
Serving Moodle PresentationServing Moodle Presentation
Serving Moodle Presentationwebhostingguy
 
How to Install and Configure Drupal CMS
How to Install and Configure Drupal CMSHow to Install and Configure Drupal CMS
How to Install and Configure Drupal CMSdarandon
 
Face your fears: Drush and Aegir
Face your fears: Drush and AegirFace your fears: Drush and Aegir
Face your fears: Drush and AegirIztok Smolic
 
SynapseIndia drupal presentation on drupal best practices
SynapseIndia drupal  presentation on drupal best practicesSynapseIndia drupal  presentation on drupal best practices
SynapseIndia drupal presentation on drupal best practicesSynapseindiappsdevelopment
 
Drupal on your laptop
Drupal on your laptopDrupal on your laptop
Drupal on your laptopSam Moore
 

Similaire à Introduction to Drupal - Installation, Anatomy, Terminologies (20)

13th Sep - Drupal Global Training Day by TCS - Drupal core advanced overview
13th Sep - Drupal Global Training Day by TCS - Drupal core advanced overview13th Sep - Drupal Global Training Day by TCS - Drupal core advanced overview
13th Sep - Drupal Global Training Day by TCS - Drupal core advanced overview
 
Cms drupal installation & configuration anil mishra
Cms drupal installation & configuration   anil mishraCms drupal installation & configuration   anil mishra
Cms drupal installation & configuration anil mishra
 
Improving your Drupal 8 development workflow DrupalCampLA
Improving your Drupal 8 development workflow DrupalCampLAImproving your Drupal 8 development workflow DrupalCampLA
Improving your Drupal 8 development workflow DrupalCampLA
 
LuisRodriguezLocalDevEnvironmentsDrupalOpenDays
LuisRodriguezLocalDevEnvironmentsDrupalOpenDaysLuisRodriguezLocalDevEnvironmentsDrupalOpenDays
LuisRodriguezLocalDevEnvironmentsDrupalOpenDays
 
Drupal 7x Installation - Introduction to Drupal Concepts
Drupal 7x Installation - Introduction to Drupal ConceptsDrupal 7x Installation - Introduction to Drupal Concepts
Drupal 7x Installation - Introduction to Drupal Concepts
 
Drupal 8 improvements for developer productivity php symfony and more
Drupal 8 improvements for developer productivity  php symfony and moreDrupal 8 improvements for developer productivity  php symfony and more
Drupal 8 improvements for developer productivity php symfony and more
 
Introduction To Drupal
Introduction To DrupalIntroduction To Drupal
Introduction To Drupal
 
Drupal Installation &amp; Configuration
Drupal Installation &amp; ConfigurationDrupal Installation &amp; Configuration
Drupal Installation &amp; Configuration
 
Drupal Checklist for Site Builder and Web admin
Drupal Checklist for Site Builder and Web adminDrupal Checklist for Site Builder and Web admin
Drupal Checklist for Site Builder and Web admin
 
Rapid site production with Drupal
Rapid site production with DrupalRapid site production with Drupal
Rapid site production with Drupal
 
Taking your site from Drupal 6 to Drupal 7
Taking your site from Drupal 6 to Drupal 7Taking your site from Drupal 6 to Drupal 7
Taking your site from Drupal 6 to Drupal 7
 
Lean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and DrushLean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and Drush
 
Drupal Deployment Troubles and Problems
Drupal Deployment Troubles and ProblemsDrupal Deployment Troubles and Problems
Drupal Deployment Troubles and Problems
 
Anthony McKeown Drupal Presentation
Anthony McKeown Drupal PresentationAnthony McKeown Drupal Presentation
Anthony McKeown Drupal Presentation
 
Help! I inherited a Drupal Site! - DrupalCamp Atlanta 2016
Help! I inherited a Drupal Site! - DrupalCamp Atlanta 2016Help! I inherited a Drupal Site! - DrupalCamp Atlanta 2016
Help! I inherited a Drupal Site! - DrupalCamp Atlanta 2016
 
Serving Moodle Presentation
Serving Moodle PresentationServing Moodle Presentation
Serving Moodle Presentation
 
How to Install and Configure Drupal CMS
How to Install and Configure Drupal CMSHow to Install and Configure Drupal CMS
How to Install and Configure Drupal CMS
 
Face your fears: Drush and Aegir
Face your fears: Drush and AegirFace your fears: Drush and Aegir
Face your fears: Drush and Aegir
 
SynapseIndia drupal presentation on drupal best practices
SynapseIndia drupal  presentation on drupal best practicesSynapseIndia drupal  presentation on drupal best practices
SynapseIndia drupal presentation on drupal best practices
 
Drupal on your laptop
Drupal on your laptopDrupal on your laptop
Drupal on your laptop
 

Plus de Gerald Villorente

Drupal Development : Tools, Tips, and Tricks
Drupal Development : Tools, Tips, and TricksDrupal Development : Tools, Tips, and Tricks
Drupal Development : Tools, Tips, and TricksGerald Villorente
 
BITS 2015: The Beauty of Drupal
BITS 2015: The Beauty of DrupalBITS 2015: The Beauty of Drupal
BITS 2015: The Beauty of DrupalGerald Villorente
 
Consistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and ChefConsistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and ChefGerald Villorente
 
Drush Deployment Manager: Deployment Made Easy
Drush Deployment Manager: Deployment Made EasyDrush Deployment Manager: Deployment Made Easy
Drush Deployment Manager: Deployment Made EasyGerald Villorente
 
Consistent Development Environment using Vagrant and Chef
Consistent Development Environment using Vagrant and ChefConsistent Development Environment using Vagrant and Chef
Consistent Development Environment using Vagrant and ChefGerald Villorente
 
DevOps: Cooking Drupal Deployment
DevOps: Cooking Drupal DeploymentDevOps: Cooking Drupal Deployment
DevOps: Cooking Drupal DeploymentGerald Villorente
 
Drupal Pilipinas Apprentice: LAMP Administration, CSS, and Vagrant
Drupal Pilipinas Apprentice: LAMP Administration, CSS, and VagrantDrupal Pilipinas Apprentice: LAMP Administration, CSS, and Vagrant
Drupal Pilipinas Apprentice: LAMP Administration, CSS, and VagrantGerald Villorente
 
Best Practices: Drupal Development
Best Practices: Drupal DevelopmentBest Practices: Drupal Development
Best Practices: Drupal DevelopmentGerald Villorente
 
Drupal Deployment and Essential Development Tools - 2nd Edition
Drupal Deployment and Essential Development Tools - 2nd EditionDrupal Deployment and Essential Development Tools - 2nd Edition
Drupal Deployment and Essential Development Tools - 2nd EditionGerald Villorente
 
Drupal Deployment and Essential Development Tools
Drupal Deployment and Essential Development ToolsDrupal Deployment and Essential Development Tools
Drupal Deployment and Essential Development ToolsGerald Villorente
 
Setting Up Cross-Browser Testing Environment (Debian-based System)
Setting Up Cross-Browser Testing Environment  (Debian-based System)Setting Up Cross-Browser Testing Environment  (Debian-based System)
Setting Up Cross-Browser Testing Environment (Debian-based System)Gerald Villorente
 

Plus de Gerald Villorente (20)

Of Docker and Drupal
Of Docker and DrupalOf Docker and Drupal
Of Docker and Drupal
 
Introduction to Kalabox
Introduction to KalaboxIntroduction to Kalabox
Introduction to Kalabox
 
Drupal Development : Tools, Tips, and Tricks
Drupal Development : Tools, Tips, and TricksDrupal Development : Tools, Tips, and Tricks
Drupal Development : Tools, Tips, and Tricks
 
Drupal 101 V-0.1
Drupal 101 V-0.1Drupal 101 V-0.1
Drupal 101 V-0.1
 
BITS 2015: The Beauty of Drupal
BITS 2015: The Beauty of DrupalBITS 2015: The Beauty of Drupal
BITS 2015: The Beauty of Drupal
 
Introduction to Drupal 7
Introduction to Drupal 7Introduction to Drupal 7
Introduction to Drupal 7
 
Consistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and ChefConsistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and Chef
 
Drush Deployment Manager: Deployment Made Easy
Drush Deployment Manager: Deployment Made EasyDrush Deployment Manager: Deployment Made Easy
Drush Deployment Manager: Deployment Made Easy
 
Consistent Development Environment using Vagrant and Chef
Consistent Development Environment using Vagrant and ChefConsistent Development Environment using Vagrant and Chef
Consistent Development Environment using Vagrant and Chef
 
Why Drupal is Rockstar?
Why Drupal is Rockstar?Why Drupal is Rockstar?
Why Drupal is Rockstar?
 
DevOps: Cooking Drupal Deployment
DevOps: Cooking Drupal DeploymentDevOps: Cooking Drupal Deployment
DevOps: Cooking Drupal Deployment
 
Drupal Pilipinas Apprentice: LAMP Administration, CSS, and Vagrant
Drupal Pilipinas Apprentice: LAMP Administration, CSS, and VagrantDrupal Pilipinas Apprentice: LAMP Administration, CSS, and Vagrant
Drupal Pilipinas Apprentice: LAMP Administration, CSS, and Vagrant
 
Drupal
DrupalDrupal
Drupal
 
Best Practices: Drupal Development
Best Practices: Drupal DevelopmentBest Practices: Drupal Development
Best Practices: Drupal Development
 
Drupal Deployment and Essential Development Tools - 2nd Edition
Drupal Deployment and Essential Development Tools - 2nd EditionDrupal Deployment and Essential Development Tools - 2nd Edition
Drupal Deployment and Essential Development Tools - 2nd Edition
 
Drupal Deployment and Essential Development Tools
Drupal Deployment and Essential Development ToolsDrupal Deployment and Essential Development Tools
Drupal Deployment and Essential Development Tools
 
Setting Up Cross-Browser Testing Environment (Debian-based System)
Setting Up Cross-Browser Testing Environment  (Debian-based System)Setting Up Cross-Browser Testing Environment  (Debian-based System)
Setting Up Cross-Browser Testing Environment (Debian-based System)
 
Git: Git'ing the Basic
Git: Git'ing the BasicGit: Git'ing the Basic
Git: Git'ing the Basic
 
Anatomy of Drupal
Anatomy of DrupalAnatomy of Drupal
Anatomy of Drupal
 
Drupal Security Hardening
Drupal Security HardeningDrupal Security Hardening
Drupal Security Hardening
 

Dernier

Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 

Dernier (20)

Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 

Introduction to Drupal - Installation, Anatomy, Terminologies

  • 1. Intro to Drupal Gerald Villorente OpenSource Developer
  • 4. System Requirements ● Web Server – Apache, Nginx, IIS, Lighttpd ● Database Server – Drupal 6: MySQL 4.1 or higher, PostgreSQL 7.1, – Drupal 7: MySQL 5.0.15 or higher with PDO, PostgreSQL 8.3 or higher with PDO, SQLite 3.3.7 or higher – Drupal 8: MySQL 5.0.15/MariaDB/Percona/equivalent or higher with PDO and an InnoDB-compatible primary storage engine, PostgreSQL 8.3 or higher with PDO, SQLite 3.3.7 or higher – Microsoft SQL Server and Oracle are supported by additional modules. – More details about database requirements.
  • 5. System Requirements ● PHP – Drupal 6: PHP 5.2.x only. Warning: support for PHP 4.x has been dropped. PHP 5.3 and later may produce errors or unexpected behaviour. – Drupal 7: PHP 5.2.5 or higher (5.3 recommended). – Drupal 8: PHP 5.4 or higher. – More details about PHP requirements, including PHP memory.
  • 6. Download and extract Drupal Drupal is available in two supported versions (the most recent and the previous). The "recommended release" is the latest stable release of that version. To learn more about versions, see the Drupal version information page. On many *nix computers the path from the server's root will be /var/www/, so cd /var/www/. On a shared server, or a server that hosts multiple domains, the path will be different (try cd ~/www or cd ~/public_html).
  • 7. Download and extract Drupal Download Drupal using any download utility, the two most popular of which are wget and curl. Not every computer has both. The commands are, respectively: $ wget http://ftp.drupal.org/files/projects/drupal-x.x.tar.gz or $ curl -O http://drupal.org/files/projects/drupal-x.x.tar.gz Note: The option for the curl command is the upper case letter "O" and not the numeral that stands for zero.
  • 8. Download and extract Drupal Replace the "http://drupal.org/files/projects/drupal-x.x.tar.gz" string in the commands with the link for the version you will be installing. To get links to recent versions, visit https://drupal.org/project/drupal. Don't visit http://ftp.drupal.org/files/projects unless you have to, because it takes long to serve (it lists many files).
  • 9. Download and extract Drupal Extracting Drupal Type the following command (replacing "x.x" with your downloaded version's number): $ tar -xzvf drupal-x.x.tar.gz Remove the compressed version of the file by using the following command: $ rm drupal-x.x.tar.gz
  • 10. Download and extract Drupal Moving Drupal to its intended location Now you need to move the contents of the drupal-x.x directory one level "up" into the web server's document root or your public HTML directory: $ mv drupal-x.x/* drupal-x.x/.htaccess ./ For Drupal 7 also add $ mv drupal-x.x/.gitignore ./ Delete drupal-x.x $ rmdir drupal-x.x
  • 11. Create the database Note: Since 8.x, Drupal can create the database itself if its database user has enough privileges. See the relevant change notice. Before running the installation script, you must create an empty database and database user (a user name assigned the rights to use the Drupal database).
  • 12. Create the database Tools you can use to create database. ● PHPMyAdmin ● MySQL shell ● mysqladmin command ● Chive
  • 13. Create the database MySQL shell $ mysql -u root -p mysql> CREATE DATABASE drupal7; Create a new user called YOURNAME for database called DB_NAME: mysql> GRANT ALL ON drupal7.* TO gerald@localhost IDENTIFIED BY 'qwerty'; How do I connect to MySQL database drupal7 using gerald account? $ mysql -u gerald -p drupal7
  • 14. Create the settings.php file Your Drupal download comes with a sample configuration file at sites/default /default.settings.php. Before you run the installation script, you must copy the configuration file as a new file called settings.php file and then set some permissions. $ cp sites/default/default.settings.php sites/default/settings.php To make the settings.php file writeable and to allow the installer to edit the file, use: $ chmod a+w sites/default/settings.php
  • 15. Create the settings.php file Note: Be sure to change the file's permissions back after you have run the installation script. Those permissions should be: $ chmod 644 settings.php $ chmod 755 ../default
  • 16. Create the files directory To let the files directory be created automatically, give the web server write privileges to the sites/default directory. $ chmod a+w sites/default Or you can create it manually $ mkdir sites/default/files $ chmod o+w sites/default/files
  • 17. Run the installation script You can run the installation script by simply calling http://localhost. If you created a VirtualHost then you have an option to define your ServerName (domain name). Like the one below. <VirtualHost *:80> # Your /etc/host is expected to have an # entry like this “127.0.0.1 local.drupal7.dev” ServerName local.drupal7.dev DocumentRoot /var/www/drupal7 <Directory /var/www/drupal7/> Allow Override All # This is required if you're # using Apache 2.4.x Require all granted </VirtualHost>
  • 25. Changing settings.php permission Secure your site After the installation is complete, you will want to change the permissions on the settings.php file back so that it is protected: $ chmod u=rw,o=r,a=r sites/default/settings.php OR $ chmod 644 sites/default/settings.php If you make manual changes to the settings.php file later, be sure to protect it again after making your modifications. Important: Failing to remove write permissions to the settings.php file is a security risk.
  • 26. Set up cron Setting up cron is an important step in the installation of the website and assists in the maintenance of the site's assets for search results, checking for updates to Drupal core and modules, and removing temporary files. A properly configured cron job can manage a variety of tasks: ● The Search module that indexes the website's content. ● The Aggregator module's that retrieves feeds. ● The Ping module that notifies other sites of updates. ● The System module that performs routine maintenance tasks, such as pruning of logs.
  • 27. Set up cron Enabling cron In Drupal 8 you can enable cron via Menu > Configuration > System > Cron (admin/config/system/cron). The default frequency is every three hours. Cron will then be triggered by end users visiting your site, no more frequently than every three hours. Note that for low- traffic sites it can also be desirable to create a cron job. In Drupal 7 you can enable cron via the Administration > Configuration > System > Cron (admin/config/system/cron). In Drupal 6 you need to create a cron job or use Poormanscron.
  • 28. Set up cron Disabling cron For performance reasons it may be desirable to disable cron. You can disable cron (e.g., at Administration > Configuration > System > Cron (admin/config/system/cron), by setting the "Run cron every" value to "Never". Another way to disable cron is to add the following line to your settings.php: $conf['cron_safe_threshold'] = 0; Note that this fixes the setting at admin/config/system/cron to "Never", and administrative users cannot override it.
  • 29. Configure clean URLs By default, Drupal uses and generates URLs for your site's pages that look like "http://www.example.com/? q=node/83". With so-called clean URLs this would be displayed without the "?q=" as "http://www.example.com/node/83".
  • 31. Drupal Structure Note: Do not touch anything other than sites folder, unless you have to upgrade/update the core or you're creating your own profile.
  • 37. anonymous A visitor to a Drupal website who is not currently logged in. Drupal considers any such visitor as being the anonymous user, with the user ID 0, and belonging to the anonymous user role.
  • 38. API An application programming interface (API) is a particular set of rules (“code”) and specifications that software programs can follow to communicate with each other. Within Drupal there is the API Reference which contains documentation for developers. There is also a Form API and Field API
  • 39. argument A section of the path for a page on a Drupal website. In the path /node/937 the first argument is “node”, and the second is “937”. Some modules, most notably Views, allow the use of “wildcard” arguments that allow a particular page to vary depending on context.
  • 40. Basic page One of two content types that are enabled in the standard installation profile. Typically basic pages are used for static content that can (but are not required to) be linked into the main navigation bar. This content type is called "Basic page" in Drupal 7 and later, and "Page" in earlier versions of Drupal.
  • 41. Base theme A Base theme is a well-written set of CSS and template files that a theme developer can make use of in a new custom theme. Theme developers can make sub themes to override the default base theme. Some of the popular base themes include Zen, Omega and AdaptiveTheme
  • 42. block The boxes visible in the regions of a Drupal website. Most blocks (e.g. recent forum topics) are generated on- the-fly by various Drupal modules, but they can be created in the administer blocks area of a Drupal site. See the documentation for more information on blocks.
  • 43. cache The core Drupal cache stores assembled pages and blocks for anonymous visitors in the cache tables in the database. Other popular Drupal caching options include boost, memcache, and authcache.
  • 44. Content type Every node belongs to a single “node type” or “content type”, which defines various default settings for nodes of that type, such as whether the node is published automatically and whether comments are permitted. Common "Content Types" that just about any website would have include: blog post and page. Content types can have different fields and modules can define their own content types. The core Drupal Book and Poll modules are two examples of modules that define content types.
  • 45. contrib Contributed modules or themes that are not part of the core Drupal product. Contributed modules and themes are available for separate download from the modules and themes sections of Drupal.org downloads. These are separate from the Drupal “core”, although over time they can become part of it. Similar concepts exist in other software and are sometimes called “plugins”, “add-ons” or “extensions”.
  • 46. core The files and modules included with the Drupal project download.
  • 47. cron A command scheduler that executes commands or scripts (e.g. scripts to backup a database) automatically at specified time and date intervals. Drupal uses a “cron job” to perform periodic tasks that help Drupal to run smoothly and efficiently.
  • 48. fields Elements of data that can be attached to a node or other Drupal entities. Fields commonly contain text, image, or terms.
  • 49. hook A PHP function that is named foo_bar(), where “foo” is the name of the module (whose filename is thus foo.module) and “bar” is the name of the hook. Each hook has a defined set of parameters and a specified result type.
  • 50. NID Node ID. The unique identifier for each node. It can be found in the path to the node. For example, a node with path, “http://drupal.org/node/937”, has a node ID of “937”.
  • 51. permission In Drupal, a tool for controlling access to content creation, modification and site administration at the application level. Administrators assign permissions to roles, then assign roles to users. The first user of a Drupal site (User1) automatically receives all permissions. In operating systems like UNIX, permissions are security settings restricting or allowing users to access information or perform certain functions at the operating system level. In the case of files on UNIX systems, there are three types of permissions: read, write and execute.
  • 52. published The state of a node that can be viewed by visitors to the website. To easily hide nodes from the public (i.e. anonymous role), make the node unpublished by unchecking “Published” in the node add/edit form.
  • 53. region Defined areas of a page where content can be placed. Basic regions include: Header, Footer, Content, Left sidebar, Right Sidebar. Different themes can define different regions so the options are often different per- site. Content is assigned to regions via blocks. They can be ordered by weight within regions to define the order in which they display.
  • 54. roles Sets of permissions that can be applied to individual users. Users can belong to more than one role. Two roles, authenticated users (those users that sign up for an account) and anonymous users (those either without an account or not logged in), are supplied by default with Drupal installations. Drupal allows creating additional roles.
  • 55. taxonomy In Drupal, "Taxonomy" is the name of a powerful core module that gives your sites use of terms. In Drupal, these terms are gathered within vocabularies which the Taxonomy module allows you to create, manage and apply.
  • 56. teaser A short introductory sentence or paragraph about a piece of content that informs readers about the subject of the content. By default, the first paragraph or two of the content is used (there is a setting for how much), usually with a link to the complete node.
  • 57. template A file to express presentation (vs. program logic). Templates are mostly HTML with special PHP variables. The variables in templates substitute in values provided by a theme.
  • 58. term An organizational keyword, known in other systems as categories or metadata. A term is a label that can be applied to a node. They are also known as tags.
  • 59. theme A file or collection of files (PHP, INFO, CSS, JPG, GIF, PNG), which together determine the look and feel of a site. A theme contains elements such as the header, icons, block layout, etc. Drupal modules define themeable functions which can be overridden by the theme file. There are additional themes available in the themes section of downloads.
  • 60. uid User ID. The unique identifier for each user. It can be found in the path to the user profile, e.g. “http://drupal.org/user/1”
  • 61. user1 The first user created on installation and granted additional (all) permissions. This user is referred to as the site maintenance account in Drupal 7.
  • 62. vocabulary A vocabulary is a collection of terms.
  • 63. weight A term used by Drupal to define the priority or order in which a function is processed or a block / node is displayed. From Drupal 6, the weight field is adjusted dynamically using a drag-and-drop interface. Note: A lower weight value (-10) will float to the top of lists, while heavier (+10) weights will appear lower in lists.