who can tell me the functionality of every table in database.I can't find the content about this in the website.I want to draw E-R models. Who can help me?Thanks!
In maybe version 2.0 there was a way to tag text in an article and then have a definition in a dictionary, that would show when the user dragged the mouse over it. (div)
Is there a way of doing this in version 4.6 or 4.7?
Hello, how do I write a rule (compatible with Drupal) which would allow me to keep some static legacy content of a site, yet move its actual location, the idea being that users will still use the same URL they always have, but the actual directory will have moved a couple of directories lower. i.e.
If they use "oldfoldername/file.html" they are returned "/new/sub/folder/to/get/to/file.html"
Any tips gratefully received, I find it a bit tricky getting my head around rewrite rules!!
RewriteEngine on
# Rewrite current-style URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
# WHY DOESNT THIS WORK???
RewriteRule ^/oldfolder$ /new/sub/folder/to/get/to
I just found Drupal yesterday because I've been asked to do a web project (political campaign) with the following requirments,
1. Blog like feature.
2. 2 column layout.
3. Ability to link to 3rd party sites for surveys (surveymonkey.com) and accepting donations (clickandpledge.com).
4. I need to add forms that visitors can fill out and I can submit to an email address... So I'm going to need to add such forms to drupal. Is that easy?