Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I'd like to filter nodes by their changes, and the users who changed them.
eg.:
let's say there's a workflow with three roles:
- editor
- proof reader
- writer
and the editor needs to see a digest of information: what has changed, if any nodes are incomplete, who's being held back etc. without users having to create revisions - which they don't seem inclined to anyway ;)
Hi,
I want to create a content type include:
1. field is taxonomy term - select list - "category"
2. field is taxonomy term - Dynamic select list - "subcategory"
--> that the options on the subcategory will "create" after the category choice.
like
category "age" 25-35
sub category "more specific" 25-30 | 30-35
I built taxonomy for "age" and "more specific" but when someone Choose "age" 20-30
- he can choose from the subcategory 15-20 | 20-25 etc... - all the static options.
I have made an update from version 7.4 I think it was to the newest 7.7 of Drupal core.
During the opdate all worked fine but I got an error with Watchdog_err when I returned to Front page.
Found a solution for that (should be Watchdog_error in files.inc) on Drupal.
Then I found that none of the layout was used.
I solved that by removing the aggregration of the CSS and JavaScribts.
Looking for a bit of advice about how drupal executes its nodes. Here's my scenario:
Most of my pages are custom PHP pages and generally rely on being passed a variable. If the page is accessed without it's variable the MySQL query fails and prints a error message. e.g http://localhost/info?year=2000 would be ok but http://localhost/info would throw up the error. I'm fine with this since these PHP pages would only be accessed by links that pass the correct variables.