I suspect this two issues are related.
First> my Dataflow exports profiles work fine, as does the dataflow profile Import Product Stocks - but the Import All Products profile is experiencing some difficultly that I've yet to find a solution for online.
The file upload fine into the dataflow_batch_import, but not catalog_product_flat_1 and related tables. This means I can find the products via the Catalog>Manage Categories>Category Products, but not in the frontend or via the Catalog>Manage Products
Furthermore, we get this error
> SQLSTATE[HY000] [2002] Can't connect to local MySQL server through
> socket '/var/lib/mysql/mysql.sock' (11)
>
> Trace:
> #0 /home/thebncom/public_html/magento/lib/Zend/Db/Adapter/Pdo/Mysql.php(96):
> Zend_Db_Adapter_Pdo_Abstract->_connect()
> #1 /home/thebncom/public_html/magento/lib/Varien/Db/Adapter/Pdo/Mysql.php(251):
> Zend_Db_Adapter_Pdo_Mysql->_connect()
> #2 /home/thebncom/public_html/magento/lib/Zend/Db/Adapter/Abstract.php(459):
> Varien_Db_Adapter_Pdo_Mysql->_connect()
> #3 /home/thebncom/public_html/magento/lib/Zend/Db/Adapter/Pdo/Abstract.php(238):
> Zend_Db_Adapter_Abstract->query('SET NAMES utf8', Array)
> #4 /home/thebncom/public_html/magento/lib/Varien/Db/Adapter/Pdo/Mysql.php(337):
> Zend_Db_Adapter_Pdo_Abstract->query('SET NAMES utf8', Array)
> #5 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/Resource/Type/Db/Pdo/Mysql.php(45):
> Varien_Db_Adapter_Pdo_Mysql->query('SET NAMES utf8')
> #6 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/Resource.php(93):
> Mage_Core_Model_Resource_Type_Db_Pdo_Mysql->getConnection(Object(Mage_Core_Model_Config_Element))
> #7 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/Mysql4/Abstract.php(297):
> Mage_Core_Model_Resource->getConnection('core_read')
> #8 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/Mysql4/Abstract.php(312):
> Mage_Core_Model_Mysql4_Abstract->_getConnection('read')
> #9 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/Mysql4/Abstract.php(332):
> Mage_Core_Model_Mysql4_Abstract->_getReadAdapter()
> #10 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/Mysql4/Collection/Abstract.php(118):
> Mage_Core_Model_Mysql4_Abstract->getReadConnection()
> #11 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/Config.php(1254):
> Mage_Core_Model_Mysql4_Collection_Abstract->__construct(Object(Mage_Core_Model_Mysql4_Website))
> #12 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/Config.php(1287):
> Mage_Core_Model_Config->getModelInstance('core_mysql4/web...',
> Object(Mage_Core_Model_Mysql4_Website))
> #13 /home/thebncom/public_html/magento/app/Mage.php(460): Mage_Core_Model_Config->getResourceModelInstance('core/website_co...',
> Object(Mage_Core_Model_Mysql4_Website))
> #14 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/Abstract.php(208):
> Mage::getResourceModel('core/website_co...',
> Object(Mage_Core_Model_Mysql4_Website))
> #15 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/Abstract.php(213):
> Mage_Core_Model_Abstract->getResourceCollection()
> #16 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/App.php(571):
> Mage_Core_Model_Abstract->getCollection()
> #17 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/App.php(429):
> Mage_Core_Model_App->_initStores()
> #18 /home/thebncom/public_html/magento/app/code/core/Mage/Core/Model/App.php(335):
> Mage_Core_Model_App->_initCurrentStore('', 'store')
> #19 /home/thebncom/public_html/magento/app/Mage.php(627): Mage_Core_Model_App->run(Array)
> #20 /home/thebncom/public_html/magento/index.php(80): Mage::run('', 'store')
> #21 {main}
Which is resolved by restarting the MySQL Database Server, unfortunately it keeps popping up.
The next problem is the magento import module, it works on one site but not they other. We can't get it passed the "Check Data" part, using 3 product csv or a 500 product csv.
Steps Taken so far to little or no effect: Increased max_execution_time, max_input_time and default_socket_timeout -1 Truncated dataflow_batch_import, dataflow_batch_export Exported products to provide template of import CSVs Liaised with our host provider, they migrated our sites to a new container, to no effect. Various php solutions.
Wits end!
Additional Information: My cpanel error log is showing me this
PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 64 bytes) in /home/amerecom/public_html/lib/Varien/Object.php on line 88 and PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 82 bytes) in /home/amerecom/public_html/lib/Varien/Object.php on line 215
Line 88 bold
public function __construct() { $args = func_get_args(); if (empty($args[0])) { $args[0] = array(); } $this->_data = $args[0];
$this->_construct(); }
line 215 bold
public function setData($key, $value=null) { $this->_hasDataChanges = true; if(is_array($key)) { $this->_data = $key; } else { **$this->_data[$key] = $value;** } return $this; }