Hi

I have inherited a drupal test server at work, and I would like to know what version of Drupal I am using on it. The person that had installed Drupal has left. Hence the reason I don't know what version it is. Can anyone tell me how to find it?

Thanks in advance.
scrawl

Comments

krisvannest’s picture

I'm sure there are other ways, but if you're taking over this project you might also want more info on the server, etc... if so, check out System Info mod at http://drupal.org/project/systeminfo as it will also give info on the versions of PHP, MySQL, etc that you're running under.

scrawl’s picture

cheers, reading this now.

Thank you.

modul’s picture

If you are the site admin with access to the logs, you can go to Administer > Logs > Status Report. That should do it. No need to install extra modules.

Ludo

scrawl’s picture

Brilliant, thanks for that. I had been looking around all morning. Sometimes you can't see the wood for the trees.

bryanbeecher’s picture

Thanks - this was just what I was hoping to find!

themegarden.org’s picture

You can find drupal version in CHANGELOG.txt file (in your drupal folder), together with list of changes.
---
Drupal Themes Live Preview - themegarden.org

wanderingstan’s picture

I just had the same problem. I think it would be good to include this information someplace more prominent, like on the Admin home page. It's really not obvious where you should look for it.

Best of all would be a "About this installation" page that would give a detailed report about the drupal installation:
- What version?
- When was it first installed? Last updated? Are there newer versions available at Drupal.org?
- Have any of the core files been modified (based on file checksums)
- How big is the files directory? The entire installation directory?
- How many nodes, categories, files, etc... are there?

scastaneda109’s picture

Administer -> Reports -> Status report

scastaneda109’s picture

Sorry, wanderingstan. I meant to reply to the original question. The status report you envision would be a wonderful thing indeed. Hopefully some developer is reading this and looking for an awesome module to contribute???

designingmind’s picture

Thanks for the helpful tips!

manish812’s picture

Administer (or Administration) >> Reports >> Status report

For more information please read the following article.

http://drupal.org/documentation/version-info

popzkg’s picture

You can get information of any drupal made site by accessing CHANGELOG.txt
For that type a site/CHANGELOG.txt on the address bar

calsoftinc’s picture

It not a tough job to know which version we are using just check the file is no more includes/version.php, it is actually in. Code for it is /libraries/drupal/version.php.

hihu’s picture

for drupal 8,
open drupal\core\lib\Drupal.php in your text editor

you will see something like this (from line 79 to line 84)

class Drupal {

/**
* The current system version.
*/
const VERSION = '8.2.6';

Neslee Canil Pinto’s picture

You can use Version Information module, to view version information in a sidebar.