php - FileMaker: integrating with Magento -
i write magento web-app working filemaker database.
could overwrite database core files code using filemaker php api?
what other options there?
i wanted interface between filemaker , magento database cause of eav it's nightmare bind magento database filemaker database. if want need use php in filemaker , use soap api of magento if separated hosted. integrate magento core api php script filemaker api if host magento on same web server or installing new magento instance pointing availalble external database. local replication of mysql database on filemaker server.
to integrate magento core api it's easy in php file, set following:
<?php require_once 'yourmagentoinstallation/path/app/mage.php'; mage::app('default'); // default can replaced default store code // can use magento code (model, eav, singleton, block, etc) ... ?>
it's possible, there different ways didn't find when needed out of box solution.
Comments
Post a Comment