How do I use Interactive Magento Console -
i have downloaded imc , don't know how use it. using denver same wamp, xamp , on. reading developer book of magento , there following notes describes how connect magento folder.
please me how can if use on local computer wamp|xamp|denver
!?
=========================developer book==========================================
for purpose, have created interactive magento console (imc), shell script specially created book , inspired ruby's own interactive ruby console (irb). follow these steps:
the first thing need install imc. so, download source files https://github.com/amacgregor/mdg_imc , extract them under magento test installation. imc simple magento shell script allow test our code in real time.
once extracted script, log in shell of virtualbox.
next, need navigate our magento root folder. if using default vagrant box, installation provided; root folder located under
/srv/www/ce1720/public_html/
, , navigate running following command line:
$ cd /srv/www/ce1720/public_html
finally, can start imc running following command line:
$ php shell/imc.php
if installed successfully, should see new line starting with
magento >.
i'm original author of script. readline functions not available on windows, version of script "borrowed" relies upon. i've since added fallback support uses stream_get_line
read stdin
. can latest version here: https://github.com/rgranadino/interactive-magento-console
this fallback support isn't handy using readline still come in handy.
Comments
Post a Comment