2024-09-15 22:45
Status:complete
Tags: Creating-drupal-project
Drupal: Modules
Subject: Content Management System
So after setting our drupal let’s get started for real this time.
This is how my website look yours might be similar or might look different based on version of drupal you have installed.
Before diving it creating the project let’s first setup our important Modules
that we are going to be using, will add more as we move on with the project.
Modules
- to add modules first we will have to visit
Modiles
section, there you will be able to see all theModules
present on your website some of them might be disabled, you can enable them based on your choice. - I personally don’t really the
Overlay
&Toolbar
Modules that is provided by the drupal by default as it’s not very in-depth/functional, So I install a custom one for that purpose (Remember if you disable them first and wish to install the one that I will be suggesting later one you might not be able to findModules
options at the top and you will probably be redirected to home page, So it’s better to install before disabling it or you can do old fashioned way by visiting thehttp://localhost/YOUR-PROJECT-NAME/admin/modules
it might be little scuffed but yha it is what it is…). - If you wish to install new modules you can do it by pressing
Install new modules
button- You can install the modules by either filling the
url
of theModule
or if you have the module downloaded then you can upload it as well (There is one more way of doing it which is very efficient I will talk about it, in just a second.)
- You can install the modules by either filling the
Modules Installation
Now, let’s start downloading the Modules
required for this Specific Project. For that we have to visit Modules downloading website.
these are the Modules
we will install for now:
- M1: Token
- M2: Pathauto
- M3: ctools
- M4: Webform
- M5: Libraries API
- M6: Devel
- M7: Views
- M8: jQuery Update
- M9: Entity API
- M10: Schema
- M11: Administration menu (this is the custom admin toolbar I was talking about that I will be using.)
Download all the modules according to your Drupal version in tar.gz
format.
Now let’s install these modules…& you might be thinking “WAIT WHAT there are so many tho…;-;” don’t worry I’ll give you a tip with which you can install all the modules in no time ;) here are the steps for it:
- Step 1: Go to you project directory inside the
www\YOUR-PROJECT-NAME
folder. - Step 2: Then find folder called
sites
. - Step 3: Then folder
all
go in that. - Step 4: Inside
all
folder go inmodules
(as you can see there isthemes
folder available as well, so if you wish to download multiplethemes
you can do it aswell.) - Step 5: Extract all those
Modules
you downloaded and paste it inmodules
folder inside theYOUR-MAIN-SOFTWARE\www\YOUR-PROJECT-NAME\sites\all\modules
something like this: - Step 6: And now finally we can enable all the
modules
one-by-one onhttp://localhost/YOUR-PROJECT-NAME/admin/modules
and don’t forget to scroll down at the end and click onSave configuration
button after you have enabled/disabled the modules.
Finally, we are done with Modules installation, if we need more modules now you know how to install it.
Now, let’s move on to creating the structure and content type for our website.