views:

45

answers:

2

hi

I have approximately 60.000 nodes in my Drupal installation.

They are all unpublished, and I need to publish all of them. I'm trying to publish them from "Content menu" but I can only select all nodes in a single page.

How can I select all nodes in my website ?

thanks

+5  A: 

Do it with sql.

UPDATE node SET status = 1;
googletorp
this will be the fastest way to do it, if you don't have sql access then Views Bulk Operations below can help automate it, but you'll have to create a view first.
@omerida: If you can install a module, you can just install devel and run the query through db_query() using the execute php block.
googletorp
+3  A: 

You can use Views Bulk Operations for that.

Fabian