Index: /lib/wpsg_exceptionhandler.class.php
===================================================================
--- /lib/wpsg_exceptionhandler.class.php	(revision 6286)
+++ /lib/wpsg_exceptionhandler.class.php	(revision 6288)
@@ -26,4 +26,10 @@
                
             }
+            else 
+            {
+            	
+            	die("SYSTEMFEHLER:".$ex->getMessage());
+            	
+            }
                 
         } // static function myCallbackMethod($ex)
Index: /mods/wpsg_mod_productvariants.class.php
===================================================================
--- /mods/wpsg_mod_productvariants.class.php	(revision 6286)
+++ /mods/wpsg_mod_productvariants.class.php	(revision 6288)
@@ -1636,4 +1636,5 @@
 				if (wpsg_isSizedArray($ar)) {
 					foreach($ar as $k => $v) {
+						$v = preg_replace('/\-(\d+)x(\d+)\./', '.', $v);
 						$vi[$k] = $v;
 					}
@@ -1655,4 +1656,5 @@
 					if (wpsg_isSizedArray($ar)) {
 						foreach($ar as $k => $v) {
+							$v = preg_replace('/\-(\d+)x(\d+)\./', '.', $v);
 							$vi[$k] = $v;
 						}
Index: /mods/wpsg_mod_produktbilder.class.php
===================================================================
--- /mods/wpsg_mod_produktbilder.class.php	(revision 6286)
+++ /mods/wpsg_mod_produktbilder.class.php	(revision 6288)
@@ -667,5 +667,7 @@
 				$ar = unserialize($images);
 				$ar2 = explode(',', $ar['pic']);
-				$file = pathinfo($ar2[count($ar2) - 1], PATHINFO_FILENAME);
+				//$file = pathinfo($ar2[count($ar2) - 1], PATHINFO_FILENAME);
+				$ar3 = pathinfo($ar2[count($ar2) - 1]);
+				$file =$ar3['basename'];
 				$af = $file;
 				$pos1 = strrpos($file, '-');
@@ -675,4 +677,6 @@
 				}
 				$af = preg_replace('/\-(\d+)x(\d+)\./', '.', $file);
+				$ar4 = pathinfo($af);
+				$af = $ar4['filename'];
 				
 				$sql = "SELECT
Index: /wpshopgermany.php
===================================================================
--- /wpshopgermany.php	(revision 6286)
+++ /wpshopgermany.php	(revision 6288)
@@ -11,5 +11,5 @@
 	Author URI: http://maennchen1.de/
 	*/
- 
+ error_reporting(E_ALL);ini_set("display_errors", "1");
 	define('WPSG_VERSION', '9.9.9');
 
