By acwebb on
Is there a way to determine if a Site Was written in Drupal?
In other words...if i visit a site...and look at the code...is there a way to determine if it was written in Drupal?
If not...is there another way to determine if Drupal was used?
thanks
~T
Comments
This discussion should help:
This discussion should help: http://drupal.org/node/639522
and
http://isthissitebuiltwithdrupal.com/
If you view the source of a
If you view the source of a Drupal site you will almost undoubtedly see something similar to the following snippet in the
<head> ... </head>section somewhere.So yeah, the key things to look for are the src's of the CSS/JS which will almost always (but not always always) contain "/sites/default/files/..." or look for the
jQuery.extend(Drupal.settings, ...);part.edit: or above. :P
Hey Thanks Rope...~T
Hey Thanks Rope...
I also noticed in this site
http://www.symantec.com/connect/
...that the main page is not Drupal.
I wonder why Symantec didn't just do the whole site in Drupal?
~T
:-\
Looks like Drupal to me...
jQuery.extend(Drupal.settings, {"basePath":"\/connect\/", ... });edit: Unless you mean http://symantec.com isn't Drupal, which it appears it is not...
Exactly...the home page is
Exactly...the home page is NOT DRUPAL...but the other page is.
Ok, I see... Sorry for the
Ok, I see... Sorry for the confusion.
I think that the Connect site is kind of intended to be somewhat of a separate entity from the main Symantec site. Here's a whole case study on the Symantec Connect Drupal implementation if you're interested: http://drupal.org/symantec-connect-social-business-software
For Chrome
I use this for Google Chrome:
https://chrome.google.com/webstore/detail/dapjbgnjinbpoindlpdmhochffioedbn
Called the "BuiltWith Technology Profiler". Pretty useful I use it all the time too. Shows if it was made with any major CMS as well as language, server, HTML5, jQuery, and a ton more technologies.
:)