Index: /lib/wpsg_exceptionhandler.class.php
===================================================================
--- /lib/wpsg_exceptionhandler.class.php	(revision 8134)
+++ /lib/wpsg_exceptionhandler.class.php	(revision 8135)
@@ -24,4 +24,6 @@
             } else {
 
+				//echo '<pre>'; debug_print_backtrace();echo '</pre>';
+	            
                 $typeLabel = __('Allgemeiner Fehler', 'wpsg');
                 $arData = Array();
Index: /mods/wpsg_mod_export.class.php
===================================================================
--- /mods/wpsg_mod_export.class.php	(revision 8134)
+++ /mods/wpsg_mod_export.class.php	(revision 8135)
@@ -630,5 +630,5 @@
 				 
 				if (sizeof($arData) === 1) {
-							
+							 
 					$profil['filename'] = wpsg_ShopController::getShop()->replaceUniversalPlatzhalter($profil['filename'], array_values($arData)[0]->getId());
 					
@@ -858,5 +858,5 @@
             $this->loadFields();
 
-            $arData = wpsg_order::find($arOrderFilter, false);
+            $arData = wpsg_order::find($arOrderFilter);
 
             $tmpfname = tempnam($this->getTmpFilePath(), "wpsg");
@@ -883,7 +883,7 @@
             }
  
-            foreach ($arData as $order_id) {
-
-				$oOrder = wpsg_order::getInstance($order_id);
+            foreach ($arData as $oOrder) {
+
+				$order_id = $oOrder->getId();
 				
 				if (intval($profil['order_onetime']) === 1 && intval($oOrder->getMeta('wpsg_mod_export_order_onetime_'.$profil_id, false, 0)) > 0) continue;
@@ -1829,5 +1829,5 @@
 
         public function getValue($f, $profil_separator, $o_id, $p_id = null, $customer_id = null, $order_product_id = null) {
-
+ 
             $field_value = $f['value_key'];
 
Index: /views/admin/versandzonen_list.phtml
===================================================================
--- /views/admin/versandzonen_list.phtml	(revision 8134)
+++ /views/admin/versandzonen_list.phtml	(revision 8135)
@@ -14,5 +14,9 @@
     foreach ($arShipping as $s_key => $s) {
         
-        $arShippingPreset[$s_key] = $s['name'];
+        if (intval($s['deleted']) !== 1 && intval($s['active']) === 1) {
+        
+            $arShippingPreset[$s_key] = $s['name'];
+
+        }
         
     }
