This documentation refers to an older version of CiviCRM (3.4 / 4.0). The current stable version is 4.1. Please introduce all documentation changes and new material here.

Skip to end of metadata
Go to start of metadata
This page refers to CiviCRM 3.4 and 4.0, current STABLE version.

Documentation Search


CiviCRM 3.4 and 4.0 Documentation

Support and Participation

Developer Resources


CiviCRM books!

Make sure to check out the FLOSS Manual Understanding CiviCRM as well! You can also support this project by ordering a hard copy.

Or support us by buying an eBook or hard copy of Using CiviCRM from Packt Publishing.

Using URLs in Import_Duplicates.csv.

When you are importing records, CiviCRM will generate an error report if it finds a duplicate record or records. You can download this as a csv file and open it in Excel (or any other text editor).

The second field in each entry is the URL of the existing entry so that you can look and see if it is a true duplicate or not. This field is a URL exported in XML format with http entities and looks like http://www.example.com/civicrm/contact/view?reset=1&.amp.;cid=9999

Notice the &.amp.;

If you paste this link into your browser it will give you an error message:

+++++
Sorry. A non-recoverable error has occurred.
Could not find valid value for cid
Return to CiviCRM menu.
+++++

To use it you need to replace the &.amp.; html entity with a single '&' (use search and replace if you have many records) so the link looks like http://www.example.com/civicrm/contact/view?reset=1&cid=9999

This will take you correctly to the existing record.

Labels
  • None