Index: /lib/functions.inc.php
===================================================================
--- /lib/functions.inc.php	(revision 6428)
+++ /lib/functions.inc.php	(revision 6429)
@@ -19,4 +19,18 @@
 		return false;
 	
+	}
+
+	function wpsg_removeBOM($data) 
+	{
+    
+		if (0 === strpos(bin2hex($data), 'efbbbf')) 
+		{
+       
+			return substr($data, 3);
+    
+		}
+    
+		return $data;
+
 	}
 
Index: /mods/wpsg_mod_export.class.php
===================================================================
--- /mods/wpsg_mod_export.class.php	(revision 6428)
+++ /mods/wpsg_mod_export.class.php	(revision 6429)
@@ -379,11 +379,13 @@
 			else if ($_REQUEST['do'] == 'import')
 			{
-				 
-				$arData = @json_decode(file_get_contents($_FILES['profil_file']['tmp_name']), true);
+				
+				$content = file_get_contents($_FILES['profil_file']['tmp_name']);
+				$content = wpsg_removeBOM($content);
+				$arData = @json_decode($content, true);
 				
 				if (!wpsg_isSizedArray($arData))
 				{
 					
-					$this->shop->addBackendError(__('Datei ist keine gÃŒltige Profildatei.', 'wpsg'));
+					$this->shop->addBackendError(wpsg_translate(__('Datei ist keine gÃŒltige Profildatei. Error: #1#', 'wpsg'), json_last_error_msg()));
 										
 				}
