Which version of drupal do you have installed?

Check the last entry in CHANGELOG.txt in the root folder ... that will tell you!

Soren ONeill - Denmark

Comments

zerok’s picture

You can also check the VERSION constant in modules/system.module :-)

KentBye’s picture

Taking this lead, I created a node w/ a PHP input filter, and typed in this code to display the Drupal Version number:

<?php
print VERSION;
?>
iedude@remote.insidetheie.com’s picture

i dont have a CHANGELOG.TXT, in my root (probably deleted it a long time ago), and i cant find anything about "VERSION" in my system.module ..

Now what??

zerok’s picture

Then you at least know up to some point, that you're not using Drupal 4.7.x and if you have the contact.module in core, then you're probably not using 4.5.x (at least I don't see it in 4.5.8). This should at least help you figure out, what major release of Drupal you're using. You could then also start checking the $Id: lines in each file to determine, how old your core files are. With some little magic in your favorite script language this shouldn't be too hard to find out :) Just an idea.