Hi,

We want to upgrade Drupal 5 site to drupal 6, We used usernode on our site and would like to use content profile for upgraded version.
we tried getting patches for usernode to update it to D6 however it didn't work.
We tried node export and views bulk operation module to export usernodes, it didn't work.
Is there any way to export nodes in a simpler way or upgrade path from usernode to content profile.
Any help will be highly appreciated.
Thank you in advacne.

Regards
Sagar

Comments

sfyn’s picture

Crossposted from #249109: Drupal 6 version (Migrate to Content Profile). Here are my instructions for migrating from usernode in Drupal 5:

  1. Download and install content_profile.
  2. Navigate to admin/content/node-type/usernode. (or whatever content type you are using for your usernodes)
  3. Click on the Content Profile fieldset.
  4. Check off "Use this content type as a content profile for users".
  5. Click on "Save content type".
sfyn’s picture

Status: Active » Needs review
sfyn’s picture

I forgot to include an sql command to make sure the usernode is still available post migration to do this:

UPDATE node_type SET module='node' WHERE module='usernode';

I have updated the handbook page to reflect this.