How to find version of Drupal installed

2019-02-05 10:41发布

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

标签: drupal
15条回答
男人必须洒脱
2楼-- · 2019-02-05 10:44

Log into Drupal admin interface. Then go to "Administer -> Available Updates". And you'll be able to see what drupal version your are using.

or you can go to the file /modules/system/system.info and you will see something like version = "6.2"

查看更多
聊天终结者
3楼-- · 2019-02-05 10:45

Drupal 8 programmatically: \DRUPAL::VERSION

查看更多
三岁会撩人
4楼-- · 2019-02-05 10:47

Indeed, looking at any .info file on your Drupal instance in any theme or module folder (inside /sites/all) may be easiest/quickest for you as opposed to adding PHP code though both are quite easy.

If for any reason you don't have FTP/SSH access to your Drupal server, there are other ways like viewing page source in the browser (if you know what look for) or a simple browser pluggin such as 'Drupal for Firebug' or similar utlity:

https://addons.mozilla.org/en-US/firefox/addon/drupal-for-firebug/

查看更多
Lonely孤独者°
5楼-- · 2019-02-05 10:48

Alternatively you can install Drupal version check plugin in your browser and click on the drupal icon in your navigation bar. This is the easiest way to check Drupal version.

Here is the link to the plugin - https://addons.mozilla.org/en-US/firefox/addon/drupal-version-check/

查看更多
forever°为你锁心
6楼-- · 2019-02-05 10:49

To easily check Drupal version, go to www.yourwebsite.com/CHANGELOG.txt

CHANGELOG.txt will show you the version and change log updates to the Drupal build version.

查看更多
Anthone
7楼-- · 2019-02-05 10:50

Drupal 7 admin->modules->(see version of core module like block ) admin->reports->status->drupal version

Drupal 8 admin->reports->updates : see Drupal core

查看更多
登录 后发表回答