Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 81 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,81 @@
# plugin-opencart-3.x
Paysera plugin for OpenCart 3.x
plugin-opencart
===============

Version: 1.0.0

Date: 2017-09-18

Contributors: Paysera

Tags: online payment, payment, payment gateway, SMS payments, international payments, mobile payment, sms pay, payment by sms, billing system, payment institution, macro payments, micro payments, sms bank

Requires at least: 3.0

Tested up to: 3.0.2

Requirements: Opencart

License: GPLv3

License URL: http://www.gnu.org/licenses/gpl-3.0.html


Description
-----------

Collecting payments with Paysera is simple, fast and secure. It is enough to open Paysera account, install the plug-in to your store and you will be able to use all of the most popular ways of payment collection in one place.
No need for complicated programming or integration work. With Paysera you will receive real time notifications about successful transactions in your online store, and the money will reach you sooner.
No monthly, registration or connection fee.

It is simple to use and administer payment collection, and you can monitor movement of funds in your smartphone.
Client services and consultation takes place 7 days a week, from 8:00 till 20:00 (EET)
Payments are made in real time.

Paysera applies the lowest fees on the market, and payments from foreign banks and systems are converted at best possible rates.

To use this plugin, register at paysera.com and create your project. You will get your project ID and signature, which should be written in this plugin settings.


Installation
------------

-= Installation by FTP =-


1. Download Paysera plugin zip.

2. Connect to server and go to Opencart base directory.

3. Extract files and directories from zip file /upload directory to base directory of Opencart.

4. Activate Paysera payment method:
Extensions -> Extensions -> "Choose the extension type" -> "Payments"

Choice Paysera and enter paysera.com project ID code, password and etc.

5. Save changes.


-= Installation from admin panel =-

1. Download Paysera plugin zip.

2. Connect to Opencart admin panel.

3. Install Paysera plugin to Opencart:
Choice Extensions -> Installer -> Upload and choice zip file you have downloaded.

4. Activate Paysera payment method:
Extensions -> Extensions -> "Choose the extension type" -> "Payments"

Choice Paysera and enter paysera.com project ID code, password and etc.

5. Save changes.


Support
-------

For any questions, please look for the answers at https://support.paysera.com or contact customer support center by email support@paysera.com or by phone +44 20 80996963 | +370 700 17217.

For technical documentation visit: https://developers.paysera.com/
82 changes: 82 additions & 0 deletions Readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
plugin-opencart
===============

Version: 1.0.0

Date: 2017-09-18

Contributors: Paysera

Tags: online payment, payment, payment gateway, SMS payments, international payments, mobile payment, sms pay, payment by sms, billing system, payment institution, macro payments, micro payments, sms bank

Requires at least: 3.0

Tested up to: 3.0.2

Requirements: Opencart

License: GPLv3

License URL: http://www.gnu.org/licenses/gpl-3.0.html


Description
-----------

Collecting payments with Paysera is simple, fast and secure. It is enough to open Paysera account, install the plug-in to your store and you will be able to use all of the most popular ways of payment collection in one place.
No need for complicated programming or integration work. With Paysera you will receive real time notifications about successful transactions in your online store, and the money will reach you sooner.
No monthly, registration or connection fee.

It is simple to use and administer payment collection, and you can monitor movement of funds in your smartphone.
Client services and consultation takes place 7 days a week, from 8:00 till 20:00 (EET)
Payments are made in real time.

Paysera applies the lowest fees on the market, and payments from foreign banks and systems are converted at best possible rates.

To use this plugin, register at paysera.com and create your project. You will get your project ID and signature, which should be written in this plugin settings.


Installation
------------

-= Installation by FTP =-


1. Download Paysera plugin zip.

2. Connect to server and go to Opencart base directory.

3. Extract files and directories from zip file /upload directory to base directory of Opencart.

4. Activate Paysera payment method:
Extensions -> Extensions -> "Choose the extension type" -> "Payments"

Choice Paysera and enter paysera.com project ID code, password and etc.

5. Save changes.


-= Installation from admin panel =-

1. Download Paysera plugin zip.

2. Connect to Opencart admin panel.

3. Install Paysera plugin to Opencart:
Choice Extensions -> Installer -> Upload and choice zip file you have downloaded.

4. Activate Paysera payment method:
Extensions -> Extensions -> "Choose the extension type" -> "Payments"

Choice Paysera and enter paysera.com project ID code, password and etc.

5. Save changes.


Support
-------

For any questions, please look for the answers at https://support.paysera.com or contact customer support center by email support@paysera.com or by phone +44 20 80996963 | +370 700 17217.

For technical documentation visit: https://developers.paysera.com/

24 changes: 24 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env bash

# Builds the zip file that can be uploaded to Opencart

BASEDIR=$(dirname "$0")
STARTDIR=$(pwd)
ZIPNAME="opencart-3.x-paysera-1.6.ocmod.zip"
TEMPDIR="tmp"
UPLOADDIR="upload"

cd "$BASEDIR"
rm -rf $ZIPNAME
mkdir -p $TEMPDIR/$UPLOADDIR
cp -R src/* $TEMPDIR/$UPLOADDIR
cp -R README.md $TEMPDIR
cp -R Readme.txt $TEMPDIR
mkdir -p $TEMPDIR/$UPLOADDIR/system/library
cp vendor/webtopay/libwebtopay/WebToPay.php $TEMPDIR/$UPLOADDIR/system/library
rm -rf $TEMPDIR/$UPLOADDIR/vendor
cd "$BASEDIR/$TEMPDIR"
zip -q -r "../$ZIPNAME" ./*
cd "$BASEDIR"
rm -rf "$STARTDIR/$TEMPDIR"
cd "$STARTDIR"
12 changes: 12 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "plugin-opencart-3.x/webtopay",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

paysera/plugin-opencart-3.x

"type": "project",
"description": "WebToPay",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WebToPay should not be used anywhere

"keywords": ["paysera", "ecommerce", "framework", "webtopay"],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

opencart missing, webtopay should be removed

"homepage": "http://www.paysera.com",
"license": "GPL-3.0+",

"require": {
"webtopay/libwebtopay": ">=0.0.1"
}
}
Binary file added opencart-3.x-paysera-1.6.ocmod.zip
Binary file not shown.
Loading