2011-01-10 148 views
1

當我單擊運行配置文件時,我使用默認配置文件進行magento產品導出我得到一個空白屏幕我有數據庫中有1000個產品。 導入作品如魅力。 也即時無法出口產品庫存,但不能出口客戶。 我使用magento 1.4版本。 請幫忙Magento出口產品問題

+0

打開Magento的異常記錄。打開PHP錯誤日誌記錄。查看你的日誌,找出你發現的錯誤。 – 2011-01-10 08:26:49

回答

0

如果設置限制不起作用,我建議打開平面目錄或使用sql。我提供了一個唯一的鏈接的答案就是現在過期了,但WayBackMachine化險爲夷(http://web.archive.org/web/20110112232603/http://basdebie.com/magento/magento-export-time-out-try-plain-sql

SELECT DISTINCT P.entity_id, P.sku, V.value AS Name, T1.value AS ProdDesc, T2.value AS ShortDesc, 
V3.value AS MetaTitle, V4.value AS MetaDescription, 
C2.value AS CatName, 
D.value AS Price, 
G.parent_id AS Product_parent, 
    CASE 
     WHEN V2.Value = 'no_selection' 
     OR V2.Value = '/' 
       THEN NULL 
     ELSE V2.value 
    END AS Image 
    FROM mgnt_catalog_product_entity AS P INNER JOIN 
    mgnt_catalog_product_entity_varchar AS V ON P.entity_id = V.entity_id AND V.attribute_id = 60 LEFT JOIN 
    mgnt_catalog_product_entity_varchar AS V2 ON P.entity_id = V2.entity_id AND V2.attribute_id = 74 LEFT JOIN 
    mgnt_catalog_product_entity_varchar AS V3 ON P.entity_id = V3.entity_id AND V3.attribute_id = 71 LEFT JOIN 
    mgnt_catalog_product_entity_varchar AS V4 ON P.entity_id = V4.entity_id AND V4.attribute_id = 73 LEFT JOIN 
    mgnt_catalog_category_product AS C1 ON P.entity_id = C1.product_id LEFT JOIN 
    mgnt_catalog_category_entity_varchar AS C2 ON C1.category_id = C2.entity_id AND C2.attribute_id = 33 LEFT JOIN 
    mgnt_catalog_product_relation AS G ON P.entity_id = G.child_id LEFT JOIN 
    mgnt_catalog_product_entity_text AS T1 ON P.entity_id = T1.entity_id AND T1.attribute_id = 61 LEFT JOIN 
    mgnt_catalog_product_entity_text AS T2 ON P.entity_id = T2.entity_id AND T2.attribute_id = 62 LEFT JOIN 
    mgnt_catalog_product_entity_decimal AS D ON P.entity_id = D.entity_id AND D.attribute_id = 64 
ORDER BY P.entity_id ASC 
+2

找不到頁面:( – sulabh 2013-02-15 05:41:48

1

在你的Magento目錄中有一個.htaccess文件。打開它,找到以下行:

php_value memory_limit 128M 
php_value max_execution_time 18000 

增加的memory_limit256M甚至如果你喜歡高。通過創建你的Magento目錄中的文件看起來像這樣確認了變化:

<?php phpinfo(); 

訪問通過鍵入它的名字直接在瀏覽器中的文件,你應該能夠看到什麼memory_limit就是現在。