An open API service indexing awesome lists of open source software.

https://github.com/ph/magento-moneris

A magento module for moneris payment gateway
https://github.com/ph/magento-moneris

Last synced: 4 months ago
JSON representation

A magento module for moneris payment gateway

Awesome Lists containing this project

README

          

# NOT SUPPORTED ANYMORE

--

# Bugs
Report bugs on http://github.com/ph/magento-moneris/issues

# INSTALLATION
- Copy files to {MAGENTO INSTALLATION DIRECTORY}/app/code/local/Mage/Moneris
- Copy etc/Mage_Moneris.xml to {MAGENTO INSTALLATION DIRECTORY}/app/etc/modules/
- Copy the patched version of the Moneris PHP5 lib to it to {MAGENTO INSTALLATION DIRECTORY}/lib/moneris
The original lib was throwing an error when used in the magento environment, I only added a simple check
when accessing a properties.
- Add the following lines to app/etc/local.xml to ensure the module will show up in the administration panel.


<modules>
<Mage_Moneris>
<active>true</active>
<codePool>local</codePool>
</Mage_Moneris>
</modules>

- Set your store id and you api key in the payment module screen in the magento admin
- Set an order token when you work with the development environment

Note by default moneris use their sandbox for the hostname, you need to change them to the appropriate host
when pushing them in production, look at their documentation PDF for the right endpoint.

# MONERIS DOCUMENTATION

https://www3.moneris.com/connect/en/process/apis/PHP/index.html

# TODO:
- Implement void
- move some public method to protected
- add tests/spec for it
- add more documentation?

Feel free to send me patches or fork the project.

Pier-Hugues Pellerin ph - at - heykimo.com

Thanks to Antoine Girard - antoinegirard.com if you need magento integration contact him.

---

Copyright (c) 2008 Pier-Hugues Pellerin

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.