duplicate magento extensions [closed]

*爱你&永不变心* 提交于 2019-12-23 06:41:28

问题


how can i duplicate magento extensions and install them? I need to duplicate or rename in order to use them for my check out payment issue. the payment filter extensions enables to use payments for different products. In my websites there are alot of seller. So i need to duplicate the bKashhttp://www.magentocommerce.com/magento-connect/catalog/product/view/id/16591/ extension for my payment gateway. As it only depends only external mobile no. payment.

In fine tell me how to duplicate an extension and install them.

thanks in advance


回答1:


  • download the extension using this: http://freegento.com/ddl-magento-extension.php
  • extract the content
  • replace the content in all files from "Bkash" to "Bkash2" in files ie: the content of

find . -type f | xargs sed -i "s/Bkash/Bkash2/g"

  • replace all bkash to bkash2 in files

find . -type f | xargs sed -i "s/bkash/bkash2/g"

  • rename all files and directories that contains Bkash to Bkash2

mv ./app/design/frontend/base/default/template/Bkash ./app/design/frontend/base/default/template/Bkash2

mv ./app/code/local/Mediasoftbd/Bkash ./app/code/local/Mediasoftbd/Bkash2

mv ./app/etc/modules/Mediasoftbd_Bkash.xml ./app/etc/modules/Mediasoftbd_Bkash2.xml

  • rename all files and directories that contains bkash to bkash2

mv ./media/bkash ./media/bkash2

mv ./app/design/frontend/base/default/template/Bkash2/bkash_instruction.phtml ./app/design/frontend/base/default/template/Bkash2/bkash2_instruction.phtml

mv ./media/bkash2/bkashlogo.jpg ./media/bkash2/bkash2logo.jpg

mv ./media/bkash2/bkash-send-money.jpg ./media/bkash2/bkash2-send-money.jpg

  • copy/paste all the files (except package.xml) to your magento instalation directory

something like that should work, after that the new module should appear under system>configuration>advanced, and new configurations should be available under system>configuration>sales>payment methods

http://goo.gl/QzBuQ



来源:https://stackoverflow.com/questions/15687185/duplicate-magento-extensions

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!