How can I know which version of Drupal is installed in my server?
相关问题
- Drupal 8: How do I customize a form widget to show
- drupal :: order complete hook and upgrade user per
- Change redirect in Drupal 7 for Password Recovery
- Adding attachment to Jira's api
- Understanding htaccess Filesmatch code
相关文章
- Render a Drupal node
- How to allow multiple blocks in a module of Drupal
- How can I redirect a Drupal user after they create
- Drupal 6: Getting custom fields into the database
- Drupal 7 retain file upload
- Drupal - Set 'user/%/edit/uprofile' to def
- Drupal Session User id for independent script
- Drupal - Replace the home page
In Drupal 7
Open CHANGELOG.txt and the top most version will be the installed version.
In Drupal 8
Open core/lib/Drupal.php file and there will be a version mentioned like const VERSION = '8.1.8';
Drush Tool
Drush status
Admin Interface
Go to Administer -> Reports -> Status Report or enter URL /admin/reports/status
Open project folder. Look for CHANGELOG.txt and open it. Here you can find version.
From the database
Run the following query:
After, you will receive a serialized string value like:
Then, unserialize this string. You can use the php unserialize function or any online web service such as: http://unserialize.me
You should see two array elements as below which shows the current version number: