Details
-
Type:
Bug
-
Status: Done/Fixed
-
Priority:
Major
-
Resolution: Fixed/Completed
-
Affects Version/s: 3.0.3
-
Fix Version/s: 3.1
-
Component/s: Core CiviCRM
-
Labels:None
Description
Fatal error: Cannot use string offset as an array in /var/www/civi/sites/all/modules/civicrm/CRM/Import/Parser/Contact.php on line 810
The line of code in question
$contactID = $newContact['error_message']['params'][0];
Result of print_r($newContact); directly before said line:
Array
(
[is_error] => 1
[error_message] => No valid email address
)
Below, the result of print_r($values) directly ebfore the cough.
Notice the comma in the email address.
If i use the attached 5622.csv file with a simple mapping to first,last,email
It is caught in step 3 as an error and doesn't have the fatal error thrown between step 3 and four. I will try taking this one line as is into the same mapping
print_r($values);
Array
(
[is_error] => 1
[error_message] => No valid email address
)
Array
(
[0] => http://unbreakablecrypto.com:20082/civicrm/contact/view?reset=1&cid=84295
[1] => 3227
[2] => Sunrise Child Care
[3] => P.O. Box 36
[4] => North Thetford
[5] => VT
[6] => Orange
[7] => Geoffrey
[8] => Provider
[9] => Sheila
[10] => Home provider
[11] =>
[12] => FALSE
[13] => registered
[14] =>
[15] =>
[16] => Owner
[17] => 05054
[18] => (802) 333-9802
[19] =>
[20] =>
[21] =>
[22] =>
[23] =>
[24] =>
[25] => (802) 299-7979
[26] => geoffrey,sa@gmail.com
[27] =>
[28] =>
[29] =>
[30] => TRUE
[31] =>
[32] => TRUE
[33] => FALSE
[34] => NEW
[35] =>
[36] => 468
)