Can I use Drush with my Drupal applications?

Can I use Drush with my Drupal applications?

Drush is a command line interface that allows to manage your Drupal web sites quick and easy. With it you can perform various admin tasks with only a few commands instead of accessing your admin panel and navigating through the … Continued
How to install Drupal on my account?

How to install Drupal on my account?

The easiest way to install Drupal on your account is to install it through cPanel -> Softaculous. In order to do that you should: 1. Locate Drupal from the menu on your left and click on it. 2. Click on New Installation. … Continued
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
Initial Drupal installation and configuration

Initial Drupal installation and configuration

There are two ways you can install Drupal on your account: Manually, by downloading the script to your computer and uploading the installation files and folders to your account. Automatically via the Softaculous auto installer. For a detailed step-by-step information on how … 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
Detailed Drupal requirements

Detailed Drupal requirements

The minimal Drupal server requirements are listed below: PHP 5.2.5 or above – http://php.net MySQL 5.0 or above – http://mysql.org Apache 2.x – http://apache.org You can find more comprehensive information about this in the official Drupal documentation here. XonHost servers are fully optimized to … 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
I am having problems with my cronjob and/or it is not working

I am having problems with my cronjob and/or it is not working

In case you have problems with your cron job please follow these steps for troubleshooting: Make sure you have followed our tutorial for setting your cron job; Make sure the syntax of your command is correct. For this purpose read carefully … 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