Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find version of Drupal installed

Tags:

drupal

How can I know which version of Drupal is installed in my server?

like image 522
tibin mathew Avatar asked May 22 '10 07:05

tibin mathew


People also ask

How do I know if Drupal is installed on Linux?

You can get this by logging in to admin. Go to Administer → Reports → Status Report. This will let you know all your config information of the site including your Drupal version.

How do I know if Drupal is running?

After installation, check the status of your site at Administration > Reports > Status report ( /admin/reports/status ).

How do I know my Drush version?

Asked by Carlos Hall on October 15, 2015 in Drupal. If you have aliases set up for remote (or local) sites, you can run drush @alias status and it will give you the status info for that remote system(similar to the above one).


2 Answers

You can get this by logging in to admin. Go to Administer → Reports → Status Report.

This will let you know all your config information of the site including your Drupal version.

like image 159
Jitendra Kumar Avatar answered Oct 17 '22 06:10

Jitendra Kumar


You can also type:

drush status in your project folder. It will print out something like this:

$ drush status  Drupal version         :  7.27 **<--**  Default theme          :  garland  Administration theme   :  garland  PHP executable         :  php  PHP configuration      :  "C:\Program Files (x86)\Drush\Php\php.ini"  PHP OS                 :  WINNT  Drush version          :  6.0  Drush configuration    :  Drush alias files      :  c:/users/spaden/.drush/pantheon.aliases.drushrc.php  Drupal root            :  c:/Users/spaden/localSite/ 

Hope this helps!

like image 22
AbbyPaden Avatar answered Oct 17 '22 05:10

AbbyPaden