Skip to content

Latest commit

 

History

History
77 lines (65 loc) · 2.31 KB

README.md

File metadata and controls

77 lines (65 loc) · 2.31 KB

FireGento_RabbitMQ

RabbitMQ implementation for Magento 1 with logic for producer and consumer.

Facts

Description

This module provides the possibility to publish and consume messages via rabbitmq. You can define multiple queues and exchanges via rabbitmq.xml

Requirements

Compatibility

  • Magento CE1.6.x-1.9.x/EE1.11.x-1.14.x

Installation Instructions

  1. Install the extension via composer or modman. If you use modman please install php-amqplib on your own.
  2. Clear the cache, logout from the admin panel and then login again.
  3. Configure and activate the extension under System - Configuration - FireGento - RabbitMQ
  4. set up connection credentials in local.xml
<config>
    <global>
        <resources>
            <rabbitmq>
                <default>
                    <connection>
                        <host>127.0.0.1</host>
                        <port>5672</port>
                        <user>vagrant</user>
                        <password>vagrant</password>
                        <vhost>firegento_develop</vhost>
                    </connection>
                </default>
            </rabbitmq>
        </resources>
    </global>
</config>

Uninstallation

  1. Remove all extension files from your Magento installation

Support

If you have any issues with this extension, open an issue on GitHub.

Contribution

Any contribution is highly appreciated. The best way to contribute code is to open a pull request on GitHub.

Developer

FireGento Team

Team:

License

GNU General Public License, version 3 (GPLv3)

Copyright

(c) 2011-2017 FireGento Team