12/05/2016 at 2:52 pm
#402277
Keymaster
@ James
Ok, I narrowed do the issue… I can now import the entire file with all columns mapped to Connections fields. I have not deleted the imported data so you can review.
What I did to resolve.
I installed the Code Snippets plugin and added the following code:
add_action( 'admin_init', 'cn_remove_geocode', 11 );
function cn_remove_geocode() {
remove_filter( 'cn_set_address', array( 'cnEntry_Action', 'geoCode' ) );
}
What this does is prevent Connections from using Google Maps to geocode an address. It seems some type of server error is being triggered when trying to geocode address. Perhaps Bluehost is rate limiting external connections to other sites???
