Skip to content

Instantly share code, notes, and snippets.

@peterjaap
Created May 22, 2021 18:42
Show Gist options
  • Save peterjaap/aaadff122bff9b7bcbceb74d32b79bb9 to your computer and use it in GitHub Desktop.
Save peterjaap/aaadff122bff9b7bcbceb74d32b79bb9 to your computer and use it in GitHub Desktop.
Run Magento export profile CLI
<?php
set_time_limit(0);
//THIS SCRIPT JUST INITIALS THE PROFILE TO BE RUN VIA MAGENTO ADMIN "RUN PROFILE IN POPUP". Its the same thing as click just via this file that you can run via cron
$profileId = $argv[1]; // SYSTEM - IMPORT/EXPORT - DATAFLOW PROFILES PROFILES <-- you need to go into your magento admin and grab the exact profile ID
require_once 'app/Mage.php';
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::register('current_convert_profile', $profile);
$profile->run();
$recordCount = 0;
$batchModel = Mage::getSingleton('dataflow/batch');
echo "EXPORT COMPLETE. BATCHID: " . $batchModel->getId();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment