Hi
the normal Drupal nodes admnistration page is not enough to batch edit 1000s of nodes, what am I missing here? I d need to update all nodes tagged with a given term, how can I add to a view the affiliation editing block as added by domain_content?
tx
Simone

Comments

cimo75’s picture

The only thing that comes to my mind right now is :

- create a view to gather all the nodes I want to modify and write down a csv file or similar with all the NIDs

- use MYSQL to add to the domain_access table all the entries

S.

cimo75’s picture

So, it works as mentioned above, and here is the proper command to populate the rows, the csv file must be named "domain_access" to address the proper table.

mysqlimport --local --fields-enclosed-by='"' --fields-terminated-by=',' --user=root --password myDBname domain_access

agentrickard’s picture

Status: Active » Closed (duplicate)

See #804926: Support Views Bulk Operations. Please search before posting.

cimo75’s picture

Hi
I came from that post when looking for this function but I don t see how to trigger a rule action for a whole set of nodes, probably I am missing some basic Rules usage here.