我正在尝试使用脚本自动化 magmi
<?php
class Trainingsatyendra_Feedback_IndexController extends Mage_Core_Controller_Front_Action
{
public function indexAction()
{
exec('localhost/practice/magmi/web/magmi_run.php?mode=create&pr
ofile=default&engine=magmi_productimportengine:Magmi_ProductImportEngine&CSV:f
ilename=catalog_product_20130422_073721.csv',$result);
var_dump($result);
if($result)
{
echo "shell successfully executed";
}
else
echo "shell Not executed";
}
}
?>
上面的代码写在我的控制器文件中。当我将以下代码复制并粘贴到浏览器 url 中时,它可以在浏览器上给我输出
localhost/practice/magmi/web/magmi_run.php?mode=create&pr
ofile=default&engine=magmi_productimportengine:Magmi_ProductImportEngine&CSV:f
ilename=catalog_product_20130422_073721.csv
但是,如果我尝试在我的控制器中使用 exec 或 shell_exec ,它就不起作用。