|
|
![]() |
| Thread Tools | Search this Thread |
#1
| |||
| |||
Bulk deleting drupal content nodes Can anyone provide me the Code for deleting 50 nodes at a time in drupal software.I would really appreciate that person. |
#2
| |||
| |||
Re: Bulk deleting drupal content nodes In this example i am going to delete all nodes of a particular type (page), a quick way to execute the code is to create a new node, set the input format to PHP, paste the code into the node body - add a title and click submit - <?php $node_type = 'page'; //fetch the nodes we want to delete $result = db_query("SELECT nid FROM {node} WHERE type='%s'",$node_type); while ($row = db_fetch_object($result)){ node_delete($row->nid); $deleted_count+=1; } //simple debug message so we can see what had been deleted. drupal_set_message('$deleted_count nodes have been deleted'); ?> Note:- Don't forget to delete the node when your done. |
#3
| |||
| |||
Re: Bulk deleting drupal content nodes Thanks a lot it worked for me |
![]() |
|
Tags: bulk deleting nodes, content nodes, drupal |
Thread Tools | Search this Thread |
|
![]() | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Script for deleting folders + content in root of D:\ after # days | lca1630 | Windows Server Help | 6 | 28-03-2012 08:50 PM |
How to get distance (hops) between NUMA nodes? | Aaryn | Windows Software | 7 | 27-09-2010 11:13 AM |
Clear Content in cell without deleting formula | ARTHUR18 | Windows Software | 3 | 05-06-2009 11:03 AM |
No suitable nodes are available to serve your request | dalsandhu | Networking & Security | 3 | 27-05-2009 07:33 PM |
How to Handle Content Management system in Drupal + PHP | StudyBoy | Software Development | 3 | 19-03-2009 04:23 PM |