merge
diff --git a/app/libraries/ExperimentUtilities.php b/app/libraries/ExperimentUtilities.php
index da58102..54d7bdc 100644
--- a/app/libraries/ExperimentUtilities.php
+++ b/app/libraries/ExperimentUtilities.php
@@ -604,6 +604,9 @@
                     $parts = explode('/', rtrim($currentInputPath, '/'));
                     $fileName = array_pop($parts);
                     $newInputPath = ExperimentUtilities::$experimentPath . $fileName;
+                    if(parse_url($currentInputPath)){
+                        $currentInputPath = parse_url($currentInputPath, PHP_URL_PATH);
+                    }
                     copy($currentInputPath, $newInputPath);
 
                     $dataProductModel = new DataProductModel();