0 votes
1.7k views
in Magento by
How can we run Magento Code Externally on another folder other than its default installation folder please?

1 Answer

0 votes
by

Simple as this.

<?php
require_once('app/Mage.php'); //Path to Magento
umask(0);
Mage::app();
// Run you code here
?>

Related questions

+2 votes
1 answer 1.3k views
+1 vote
1 answer 1.5k views
+1 vote
1 answer 7.5k views
asked Jan 31, 2018 in Magento by Edward121 (260 points)
0 votes
1 answer 14.3k views
+1 vote
1 answer 5.6k views
0 votes
1 answer 2.2k views
asked Feb 14, 2017 in Magento by Toms
...