From other forums this looks like it is a PHP safe mode issue, but I need to be sure. I have requested my service provider to look into it for me too, but what confuses me is that this works if I use just the wp_content folder... Only problem is that I need the uploads to go to the root of the uploads folder.
Could you please verify if I am using the filters correctly below?
add_filter("gform_upload_path", "change_upload_path", 10, 2);
function change_upload_path($path_info, $form_id){
$path_info["path"] = "/wp-content/uploads/";
$path_info["url"] = "http://fllsa.org/wp-content/uploads/";
return $path_info;
}
Thanks!