Rainbow Easy Payment Construction Tutorial

 1. Install the pagoda panel on the server 

2. Add a new site, don't forget to create a database;

3. Download the source code and upload the source code to the root directory of the website

4. Set the pseudo-static website (copy the code below and save):

  1. location / {
  2. if (!-e $request_filename) {
  3. rewrite ^/(.[a-zA-Z0-9\-\_]+).html$ /index.php?mod=$1 last;
  4. }
  5. rewrite ^/pay/(.*)$ /pay.php?s=$1 last;
  6. }
  7. location ^~ /plugins {
  8. deny all;
  9. }
  10. location ^~ /includes {
  11. deny all;
  12. }

5. Visit http://************/install to install,

The database name, user name and password set by the website, use copy and paste.

6. It is installed all the way down, you need to reinstall, delete the install.lock file under install!

Background address: http://*******/admin Default account: admin, password: 123456 (I set it, you can do it yourself)

This is the easy payment page after construction:

It is a screenshot of the plug-in part of the payment interface. After building it, you can see it by yourself. Basically, you can use V visa-free, which is also the most commonly used! ! !

 Let's take a screenshot to talk about the most difficult and most error-prone:

How to connect V visa, easy payment, and tvbox? I have been working on this process for a long time. One place is wrong, and all of them are wrong, so write it out:

1. First fix the V visa-free background, and open the monitoring terminal, the test is no problem.

2. Build the Haoyi payment background (many backgrounds have bugs, the V visa-free and Yi payment of this site have been tested, and the payment does not call back problem has been fixed)

3. It is too simple to connect with V-visa-free and EasyPay. There are also many tutorials on the Internet, so I won’t talk about it! ! ! (But the success of the test here does not mean that there is no problem with the client callback)

4. It is too difficult to connect the backend of Yipay to the backstage of tvbox. Although it is very simple after finishing it, if you fill it out incorrectly, there will be problems.

Easypay docking tvbox background (please refer to the picture below):

Guess you like

Origin blog.csdn.net/jack8988/article/details/131370850