tags:

views:

174

answers:

8

I'm wondering what is the markup pattern of DRUPAL. I know that the site is running in Wordpress when I view it's mark-up and see /wp-themes, or in Joomla it uses /templates /administrator (for admin page eg. site.com/administrator).

A: 

Here's what I look for..

Most drupal sites use "clean" urls so the admin page is usually http://www.site.com/admin

+3  A: 

For me the fatest way is to check for the drupal.js in the source or the Drupal global js variable using a js console like firebug.

googletorp
+1  A: 

All of the other answers work, plus - if they have css and js optimisation turned on you might see links to the css and js files similar to this (with "sites/default/files"):

<link type="text/css" rel="stylesheet" media="print" href="/sites/default/files/css/css_b4e7deec9864f332efab3b64ea4fa606.css" />
jsims281
A: 

In the source code you can find

jQuery.extend(Drupal.settings,-----------Code-----------------)

and also you can find as JS files

script type="text/javascript" src="/examplesite/sites/all/modules/XXXXX/js/XXX.js?g"

and css files as

link type="text/css" rel="stylesheet" media="all" href="/examplesite/sites/all/modules/xxxxx/demo.css?g"

ugesh.gali
+2  A: 

Try to go to update.php. You should see Access Denied and a blueish theme, which is Garland.

Also you can go to /user and recognize that it's a Drupal login. Wordpress goes to /wp-login and Joomla goes to /administer.

Kevin
A: 

Try to find the license:

http://www.isthissitedrupal.org/LICENSE.txt

speedytwenty
A: 

Looking for paths of theme or javascript files won't work if they are cached.

You as well as the license, might be able to find CHANGELOG.txt, UPGRADE.txt or MAINTAINERS.txt in the web root.

Depending on how the server is set up, you also could request the paths set to access denied in .htaccess.

If you get access denied rather than page not found on all those patterns, it's very likely to be Drupal. These paths are (prepend the web root): module, profile, themes etc. See the .htaccess file for Drupal. If you get page not found for these pages, it still could be Drupal.

Rimian
A: 

Drupal sets the HTTP Expires header to Sun, 19 Nov 1978 05:00:00 GMT, which is Dries' birthday. Find that in includes/bootstrap.inc, function drupal_page_header().

infojunkie