http://chapterthreellc.com/blog/matt_cheney/drupalcon_boston_bringing_gu...
wget "http://csmproduction:csmproduction@1.csm.clients.raincitydev.com/hot_fix_quote.php?start=0&limit=1000" &
wget "http://csmproduction:csmproduction@1.csm.clients.raincitydev.com/hot_fix_quote.php?start=1000&limit=1000" &
wget "http://csmproduction:csmproduction@1.csm.clients.raincitydev.com/hot_fix_quote.php?start=2000&limit=1000" &
wget "http://csmproduction:csmproduction@1.csm.clients.raincitydev.com/hot_fix_quote.php?start=3000&limit=1000"
works:
$node = node_load($nid);
$node->field_massref_to_review_primary = array(array('nid' => $nid));
node_save($node);
doesn't work
$node = node_load($nid);
doesn't work: $node->field_massref_to_review_primary[0]['nid'] = $nid;
node_save($node);
Because in their custom cck, they populated $node->field_massref_to_review_primary with another array item just used for display (parent_list), that had to be cleared, before node_save would work properly with nid populated.
Drupal setup
* check out from cvs.drupal.org core, modules and themes.
* check in to svn.
* use admin role module, /admin/user/adminrole.
* check user registration settings at /admin/user/settings.
* create an admin user role.
* login as the admin user and add an openid to the user.
* decide how to structure data using custom content types and taxonomies.
* setup views as needed.
* configure the custom paths with the pathauto module.
Publicizing your site
* http://www.google.com/addurl/?continue=/addurl
* submit a sitemap
http://civicactions.com/blog/2009/jun/10/drush_20_released_screencast_1_...
Drush 2.0 released - Screencast 1: Installing Drush and getting started
http://civicactions.com/blog/2009/jun/16/drush_screencast_tutorial_2_usi...
Drush screencast tutorial 2: Using the drush dl and info commands