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 
Modilessection, there you will be able to see all theModulespresent on your website some of them might be disabled, you can enable them based on your choice. - I personally don’t really the 
Overlay&ToolbarModules 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 findModulesoptions 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/modulesit 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 modulesbutton
- You can install the modules by either filling the 
urlof theModuleor 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.) 
 
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-NAMEfolder. - Step 2: Then find folder called 
sites. - Step 3: Then folder 
allgo in that. - Step 4: Inside 
allfolder go inmodules(as you can see there isthemesfolder available as well, so if you wish to download multiplethemesyou can do it aswell.) - Step 5: Extract all those 
Modulesyou downloaded and paste it inmodulesfolder inside theYOUR-MAIN-SOFTWARE\www\YOUR-PROJECT-NAME\sites\all\modulessomething like this: - Step 6: And now finally we can enable all the 
modulesone-by-one onhttp://localhost/YOUR-PROJECT-NAME/admin/modulesand don’t forget to scroll down at the end and click onSave configurationbutton 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.


