• Stars
    star
    519
  • Rank 84,897 (Top 2 %)
  • Language
    CSS
  • License
    MIT License
  • Created almost 10 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Bitcoin/Altcoins PHP Payment Class. It supports Bitcoin BitcoinCash DASH Dogecoin Litecoin Reddcoin Feathercoin Vertcoin Potcoin Speedcoin. Install GoUrl php script - bitcoin api payment gateway on your site!

GoUrl.io Cryptocoin Payment Gateway API

Version 2.2.3

Accept Bitcoin, Bitcoin Cash, Bitcoin SV, Litecoin, Dash, Dogecoin, Speedcoin, Reddcoin, Potcoin, Feathercoin, Vertcoin, Peercoin, UniversalCurrency, MonetaryUnit Payments Online on your website

Payment-Gateway

Our Payment Gateway with Instant Checkout allows you to easily organise your website -

Information

Copyright © 2014-2023 Delta Consultants

Website: https://gourl.io

API PHP Instruction: https://gourl.io/api-php.html

API Python,Java,Node.js,etc: https://gourl.io/api-php.html

Wordpress Plugin: https://gourl.io/bitcoin_wordpress_plugin.html

Demo: https://gourl.io/bitcoin-payment-gateway-api.html

Introduction

PHP Cryptocoin Payment Gateway is a simple PHP/MySQL script / Wordpress Plugin which you can easily integrate into your own website in minutes.

Start accepting payments on your website, including all major cryptocoins, and start selling online in minutes. No application process.

The big benefit of Cryptocoin Payment Box is that it fully integrated on your website, no external payment pages opens (as other payment gateways offer).

Your website will receive full user payment information immediately after cryptocoin payment is made and you can process it in automatic mode.

Payment-Box

How It Works

A. Website Owner / Seller Side

You can use the following steps to sell your products on your website for cryptocoins if you wish to and can automatically convert them to USD

  • Install GoUrl crypto Payment Box on your website and dynamically configure order id, currency, amount to pay, etc. Or use Monetiser Online if you don't have your own website.
  • You can accept payments in Bitcoins only or you can accept other coins - Bitcoin Cash, Bitcoin SV, Dogecoin, Litecoin, Dash, etc also. See Demo1 (multiple coins) or Demo2 (Bitcoin only)
  • When you setup Cryptocoin Payment Box, you can enter the original amount in USD or in cryptocoins. The USD amount will be automatically converted to cryptocoin amount using today's LIVE cryptocurrency exchange rates (updated every 30 minutes) and the cryptocoin amount will be displayed in the payment box. For example, if you entered 20 USD, it will display 0.059 BTC in the payment box.
  • You will need to create an account on Poloniex.com or on Bitstamp.net (trading platforms)
  • Setup so that all your received payments are automatically forwarded from your GoUrl.io account to your account on Poloniex / Bitstamp (enter your Poloniex/Bitstamp coin wallet address in gourl payment box settings). And use the "autosell" feature (auto trade your cryptocoins to USD) on Poloniex/Bitstamp.
  • Using that functionality you don't need to worry if cryptocurrency prices go down or up. Within 1-2 hours after a cryptocoin payment has been received by you, your payment will be automatically converted to USD on Poloniex/Bitstamp and will be kept on your Poloniex/Bitstamp USD account.
  • Later you can withdraw your USD from Poloniex/Bitstamp to your own USA/UK/France/etc bank account

B. End User / Buyer Side

  • All your users will see GoUrl Payment Box on your webpage, and some users will use their coin wallets and make payments to you
  • In around 5 seconds after cryptocoin payment is made, user will see confirmation on your website page that payment is received (i.e. very fast)
  • Your website will automatically immediately receive current user id with full payment information from our payment server
  • The user will still be on your webpage and see that successful payment result, your script can automatically process payment and give user confirmation (for example, upgrading user membership or giving download link on your products, etc). All in automatic mode - no manual actions are needed
  • For user that payment procedure on your website will be looking very similar visually and compare with normal credit cards for its speed
  • No paperwork, no chargebacks, no monthly fee, low transaction fee (from 0%). Please note that during the next 30 minutes (after transaction is verified) payment will be automatically forwarded to your wallet address

Installation - PHP Script

THAT'S IT! CRYPTOCOIN PAYMENT BOX/CAPTCHA SHOULD NOW BE WORKING ON YOUR SITE.

Read more - https://gourl.io/api-php.html

Installation - Wordpress Plugin

Go to https://gourl.io/bitcoin-wordpress-plugin.html

MySQL Table

Please also run MySQL query below which will create MySQL table where all the cryptocoin payments made to you will be stored. You can have multiple crypto boxes on site, all of them relates to your different crypto boxes and will be stored in that one table :

CREATE TABLE `crypto_payments` (
  `paymentID` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `boxID` int(11) unsigned NOT NULL DEFAULT '0',
  `boxType` enum('paymentbox','captchabox') NOT NULL,
  `orderID` varchar(50) NOT NULL DEFAULT '',
  `userID` varchar(50) NOT NULL DEFAULT '',
  `countryID` varchar(3) NOT NULL DEFAULT '',
  `coinLabel` varchar(6) NOT NULL DEFAULT '',
  `amount` double(20,8) NOT NULL DEFAULT '0.00000000',
  `amountUSD` double(20,8) NOT NULL DEFAULT '0.00000000',
  `unrecognised` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `addr` varchar(34) NOT NULL DEFAULT '',
  `txID` char(64) NOT NULL DEFAULT '',
  `txDate` datetime DEFAULT NULL,
  `txConfirmed` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `txCheckDate` datetime DEFAULT NULL,
  `processed` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `processedDate` datetime DEFAULT NULL,
  `recordCreated` datetime DEFAULT NULL,
  PRIMARY KEY (`paymentID`),
  KEY `boxID` (`boxID`),
  KEY `boxType` (`boxType`),
  KEY `userID` (`userID`),
  KEY `countryID` (`countryID`),
  KEY `orderID` (`orderID`),
  KEY `amount` (`amount`),
  KEY `amountUSD` (`amountUSD`),
  KEY `coinLabel` (`coinLabel`),
  KEY `unrecognised` (`unrecognised`),
  KEY `addr` (`addr`),
  KEY `txID` (`txID`),
  KEY `txDate` (`txDate`),
  KEY `txConfirmed` (`txConfirmed`),
  KEY `txCheckDate` (`txCheckDate`),
  KEY `processed` (`processed`),
  KEY `processedDate` (`processedDate`),
  KEY `recordCreated` (`recordCreated`),
  KEY `key1` (`boxID`,`orderID`),
  KEY `key2` (`boxID`,`orderID`,`userID`),
  UNIQUE KEY `key3` (`boxID`, `orderID`, `userID`, `txID`, `amount`, `addr`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;

.

Payment API List :

.

PHP Examples / Live Demo :

More Repositories

1

Bitcoin-Wordpress-Plugin

GoUrl Official Bitcoin Payment Gateway for Wordpress 3.5+ (or higher). Sell Products, Files, Digital Downloads, Membership on your website. Accept Bitcoin, Litecoin, Dogecoin, Darkcoin, Reddcoin, etc Payments Online. Use Pay-Per-Download, Pay-Per-Product, Pay-Per-Membership, Pay-Per-Page/Video-Access on your website. It is Easy!
CSS
68
star
2

Bitcoin-Payment-Gateway-ASP.NET

Bitcoin Payment Gateway API on ASP.NET. Accept Bitcoin, Litecoin, Dogecoin, Dash, Speedcoin, Reddcoin, Potcoin, Feathercoin, BTC, Vertcoin, Vericoin, Peercoin, Paycoin, MonetaryUnit, Swiscoin Payments Online on your ASP.NET C# website
CSS
65
star
3

Bitcoin-Payments-Woocommerce

Free Bitcoin/Altcoins Payment Gateway Addon for WooCommerce 2.1+ (or higher). Accept USD, Bitcoin, Litecoin, Dogecoin, Speedcoin, Darkcoin, Vertcoin, Reddcoin, Feathercoin, Vericoin, Potcoin payments in WooCommerce. Direct Integration on your website. No Chargebacks, Global, Secure. All in automatic mode.
PHP
62
star
4

Isolate-Bootstrap-4.1-CSS-Themes

Isolate Bootstrap CSS to a particular class 'bootstrapiso' to avoid css conflicts with your site css style
CSS
44
star
5

Python-Django-Flask-Bitcoin-Payments

This explains how you can use GoUrl Bitcoin Payment Gateway on Python's Django / Flask
JavaScript
25
star
6

Bitcoin-Gateway-Paid-Memberships-Pro

Provides a Bitcoin/Altcoins Payment Gateway for Paid Memberships Pro 1.8+. Direct Integration on your website, no external payment pages opens. Accept Bitcoin, Litecoin, Dogecoin, Paycoin, Reddcoin, Speedcoin, Darkcoin, Potcoin, Feathercoin, Vertcoin, Vericoin payments online. You will see the bitcoin/altcoin payment statistics in one common table on your website. No Chargebacks, Global, Secure. All in automatic mode.
PHP
23
star
7

Bitcoin-Paypal-Donations-Wordpress

Bitcoin/Altcoin & Paypal Donations on Your Website. Provides a Bitcoin Payment Gateway for Give 2.0.6.x - wordpress donation plugin. Easy to Use!
PHP
13
star
8

Bitcoin-Easy-Digital-Downloads

Free Bitcoin Payment Gateway Addon for Wordpress Easy Digital Downloads 2.4+ (or higher). Accept Bitcoin, DASH, Litecoin, Dogecoin, Speedcoin, Vertcoin, Reddcoin, Feathercoin, Vericoin, Potcoin payments in WooCommerce. Direct Integration on your website. No Chargebacks, Global, Secure. All in automatic mode.
PHP
12
star
9

Give-Wordpress-Donations-Bitcoin

Added support GoUrl.io Bitcoin Gateway for donations to original free Give Donation Wordpress Plugin
PHP
8
star
10

Bitcoin-Payments-WP-eCommerce

Free Bitcoin/Altcoins Payment Gateway Addon for WP eCommerce 3.8.10+ (or higher). Accept USD, Bitcoin, Litecoin, Dogecoin, Speedcoin, Paycoin, Darkcoin, Vertcoin, Reddcoin, Feathercoin, Vericoin, Potcoin payments in WP eCommerce. Direct Integration on your website. No Chargebacks, Global, Secure. All in automatic mode.
PHP
8
star
11

Bitcoin-Payments-Jigoshop

Free Bitcoin Payment Gateway Addon for Wordpress Jigoshop 1.12+ (or higher). Accept USD, Bitcoin, Litecoin, Dogecoin, Speedcoin, Darkcoin, Vertcoin, Reddcoin, Feathercoin, Vericoin, Potcoin payments in WooCommerce. Direct Integration on your website. No Chargebacks, Global, Secure. All in automatic mode.
PHP
5
star
12

Bitcoin-Payments-MarketPress

Provides Bitcoin/Altcoin Payment Gateway for Wpmudev MarketPress 2.9+ or higher. Accept Bitcoin, Litecoin, Dogecoin, Paycoin, etc Payments on Website
PHP
4
star
13

Bitcoin-Payments-Appthemes

Free Bitcoin Payment Gateway Addon for Appthemes Premium Themes - Classipress, Vantage, JobRoller, Clipper, Taskerr, HireBee, Ideas, Quality Control. Accept Bitcoins, Litecoin, Dogecoin, Darkcoin, Reddcoin payments online
PHP
4
star
14

GoUrl-Spelling-Notifications

The script allows site visitors to send reports to the webmaster / website owner about any spelling or grammatical errors which may be found by readers.
PHP
3
star
15

Wordpress-Spelling-Notifications

Plugin allows site visitors to send reports to the webmaster/owner about any spelling or grammatical errors. Spell checker on website.
PHP
2
star
16

bbPress-Premium-Membership-Bitcoins

Provides a Premium Membership Mode and Bitcoin/Altcoin Payment Gateway for bbPress 2.5+ or higher. Pay to read bbPress Premium Topics and Replies. Pay to add new replies / create new Topics.
PHP
2
star