Last active
August 29, 2015 14:26
-
-
Save wingsryder/04ef5f12ea9fc6ae87a6 to your computer and use it in GitHub Desktop.
Magento Product Export using programmatically/ via SSH
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
set_time_limit(0); | |
/*********************** | |
* Import/Export Script to run Import/Export profile | |
* from command line or cron. Cleans entries from dataflow_batch_(import|export) table | |
* $profileId = XX; // change this value as per id mentioned in Data Profile export/import (Screenshot :http://prntscr.com/80afwe) | |
***********************/ | |
$mageconf = 'app/etc/local.xml'; // Mage local.xml config | |
$mageapp = 'app/Mage.php'; // Mage app location | |
$logfile = 'export_data.log'; // Import/Export log file | |
/* uncomment following block when moved to server - to ensure this page is | |
* not accessed from anywhere else | |
*/ | |
//if ($_SERVER['REMOTE_ADDR'] !== '<your server ip address>') { | |
// die("You are not a cron job!"); | |
//} | |
/* System -> Import/Export -> Profiles get profile ID from | |
* Magento Import/Export Profiles | |
*/ | |
$profileId = 1; | |
/* Post run housekeeping table bloat removal | |
* imports use "dataflow_batch_import" table | |
* exports use "dataflow_batch_export" table | |
*/ | |
$table = 'dataflow_batch_export'; | |
/* Scan Magento local.xml file for connection information */ | |
if (file_exists($mageconf)) { | |
$xml = simplexml_load_file($mageconf, NULL, LIBXML_NOCDATA); | |
$db['host'] = $xml->global->resources->default_setup->connection->host; | |
$db['name'] = $xml->global->resources->default_setup->connection->dbname; | |
$db['user'] = $xml->global->resources->default_setup->connection->username; | |
$db['pass'] = $xml->global->resources->default_setup->connection->password; | |
$db['pref'] = $xml->global->resources->db->table_prefix; | |
} | |
else { | |
Mage::log('Export script failed to open Mage local.xml', null, $logfile); | |
exit('Failed to open Mage local.xml'); | |
} | |
/* Initialize profile to be run as Magento Admin and log start of export */ | |
require_once $mageapp; | |
umask(0); | |
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID); | |
$profile = Mage::getModel('dataflow/profile'); | |
$userModel = Mage::getModel('admin/user'); | |
$userModel->setUserId(0); | |
Mage::getSingleton('admin/session')->setUser($userModel); | |
$profile->load($profileId); | |
if (!$profile->getId()) { | |
Mage::getSingleton('adminhtml/session')->addError('ERROR: Incorrect profile id'); | |
} | |
Mage::log('Export ' . $profileId . ' Started.', null, $logfile); | |
Mage::register('current_convert_profile', $profile); | |
$profile->run(); | |
$recordCount = 0; | |
$batchModel = Mage::getSingleton('dataflow/batch'); | |
Mage::log('Export '.$profileId.' Complete. BatchID: '.$batchModel->getId(), null, $logfile); | |
echo "Export Complete. BatchID: " . $batchModel->getId() . "\n"; | |
/* Connect to Magento database */ | |
sleep(30); | |
mysql_connect($db['host'], $db['user'], $db['pass']) or die(mysql_error()); | |
mysql_select_db($db['name']) or die(mysql_error()); | |
/* Truncate dataflow_batch_(import|export) table for housecleaning */ | |
$querystring = "TRUNCATE ".$db['pref'].$table; | |
mysql_query($querystring) or die(mysql_error()); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment