How to install Drupal console

How to install Drupal console

The Drupal console is a very useful tool that allows you to manage your Drupal application from CLI. You can use it to configure and debug your Drupal website, install, modify and delete extensions or themes and many other things. … Continued
How to disable comments in Drupal

How to disable comments in Drupal

Often Drupal (especially the older versions like 6.x) has problems with Spam bots which flood its comment modules. The first thing to do in this case is to disable the comments modules until you clean all the Spam posts. This … Continued
How to enable RSS in Drupal?

How to enable RSS in Drupal?

RSS stands for Really Simple Syndication – a web feed format for publishing frequent updates of site content such as news, blog posts, etc. Publishers benefit from RSS feeds because this lets them syndicate their site content automatically. Readers benefit from web … Continued
How to change the page content order in Drupal?

How to change the page content order in Drupal?

By default the latest content in Drupal is displayed on the top of the page. If you would like to have a content item displayed above others, you can use the sticky option. To stick a content item, log in … Continued
How to configure Drupal to work with parked domains?

How to configure Drupal to work with parked domains?

If you cannot log into your Drupal application using your parked domain, you should change the following line in the sites/default/settings.php file: $cookie_domain = ‘yourdomain.com’; to $cookie_domain = $_SERVER[‘HTTP_HOST’]; This way Drupal will send the proper cookie information, matching the domain name … Continued
How to enable caching in Drupal?

How to enable caching in Drupal?

In order to enable caching in Drupal, log in as administrator and follow the steps below: Drupal 6.x: Go to Site Configuration Select Performance Under the Caching mode section, select Normal Under the Block cache section, select Enabled Save the changes by clicking on Save Configuration Drupal 7.x: Go … Continued
How to optimize Drupal for better performance?

How to optimize Drupal for better performance?

Drupal is one of the most popular CMS applications, offering stability and performance for almost any kind of site. However, if you don’t maintain it properly, it can become slow. Here are some tips on how to optimize your Drupal: … Continued
How can I see the exact version of my Drupal?

How can I see the exact version of my Drupal?

The version of your Drupal can be seen from the Drupal admin area -> Administer –> Reports -> Status report. Alternatively, you can open the CHANGELOG.txt file located in your Drupal installation folder (for Drupal 8 the file is under core/CHANGELOG.txt) with your File Manager and check the Drupal version.
How to optimize a Drupal website hosted on a dedicated solution?

How to optimize a Drupal website hosted on a dedicated solution?

The global MySQL settings on a dedicated solution can be modified to achieve better performance for your website. If you are on a dedicated server with root access to your server, you will be able to make these changes yourself. The recommended settings should be … Continued
How to optimize my Drupal database?

How to optimize my Drupal database?

There are two easy ways to optimize the tables in your Drupal database. The easiest way is to install the DB Maintenance module. Information on how to install a Drupal module is available in our Drupal tutorial. After the module is installed and … Continued