CiviCRM is no longer returning urls to drupal views in the format
'files/customuploaddir/filename.jpg'
but sending this instead
'/civicrm/contact/imageFile?photo=filename.jpg'
This breaks because drupals theme_image_style url encodes it and its not a url in the files directory so drupal can't find it.
Im going to try and work out why CiviCRM has changed the way it returns the image urls but in the meantime..
A temporary fix to convert the ?photo=url.jpg to public://customuploaddir/filename.jpg so that the images will work again and with image_styles
civicrm/drupal/modules/views/civicrm/civicrm_handler_field_contact_image.inc ~line 150
$url_parts = array_slice($url_parts, $files_key + 1);
/*
Temp fix for breaking changed in 4.6
Drupal URL encodes image urls that have ? = in if they start with public://
So if the url includes ? = then change url
*/
if( strpos ( $img_url, '?') === FALSE)
{
$file_path = "public://" . implode('/', $url_parts);
}
else
{
civicrm_initialize();
$result = civicrm_api3('Setting', 'get', array(
'sequential' => 1,
'return' => "customFileUploadDir",
));
// it is assumed that the civicrm directory for custom file uploads is in /files/ somewhere.. otherwise this will break.
$split_customFileUploadDir = explode('/files/',$result['values'][0]['customFileUploadDir']);
// returns $photo as ?photo=<value>
$civicrm_image_string = parse_str(parse_url($img_url, PHP_URL_QUERY));
$file_path = "public://" . $split_customFileUploadDir[1] . $photo;
}
/* end temp fix */
$image_info = image_get_info($file_path);
Jon,
It would be great if you can investigate on this.