


Tutorial on integrating Alipay into your WordPress_PHP tutorial
Table of Contents
1. What is the system integration between WP and Alipay?
2. Why write this article?
3. Steps of system integration
4. Some thoughts
Text
1. What is the system integration between WP and Alipay?
Alipay is currently the most popular electronic payment platform in China. In China, as long as you do online sales, you will inevitably have to deal with Alipay. Especially since the application fee for Alipay's merchant services has been waived (but a profit share of 1+% is required), Alipay has increasingly become one of the important payment methods for online marketing.
WordPress is an open source blogging program (but now, we have almost turned it into a CMS content management system). It has innate search engine friendliness and is the favorite of SEOers. In particular, due to its open source and simplicity, WP enthusiasts around the world have developed thousands of function extensions (plugins) and tens of thousands of template applications (theme) and widgets (widgets). These are the reasons why wp has strong vitality.
Based on the above reasons, currently, more SEO people hope to combine the SEO friendliness and rich function expansion of WP with the versatility of Alipay. Through the integration of WP and Alipay, online sales with higher conversion rates can be achieved.
2. Why write this article?
Not long ago, I used wp-mu to build a new multi-user website building system. Although the target group is a large number of users who like "free", for the sake of profitability, it is still hoped that some advanced functions can only be used through user payment. So, I thought of embedding the Alipay payment channel in the wp system. Before, I have seen that some domestic BSPs (there seem to be only a few) have adopted the integration of Alipay and WP, but I don’t know how they implement it. After searching, I saw people with the same needs as me. In addition, there are some experts who often say that the structure of the entire site must be modified to achieve integration. After a few days, there was no result. So, I decided to try it myself. The result is, quite simply, a success.
3. Steps of system integration
Due to time constraints, these steps will not be taken in screenshots. Because everyone is either engaged in SEO or development, I wrote it in words, so everyone can understand what I am talking about. Start now.
The main steps for integrating wp with Alipay system:
a. Apply for Alipay merchant service
b. Obtain system integration API
c. Interface installation and code modification
Specifically:
(1) Register an Alipay account. Here: https://www.alipay.com/
(2) After logging in, go to the Alipay homepage "Merchant Services" - "Instant Deposit (What I Need)"
(3) Fill in the merchant service center application form and conduct real-name authentication of the "contracted merchant". You are required to provide real personal information and mobile phone number in order to receive the verification code
(4) Submit the information and wait about 24 hours
(5) Receive the confirmation email from the contracted merchant and download the code samples required for system integration. If you don’t understand code, log in to “Merchant Services” on Alipay’s official website, click “Apply for Integration” in the contract list, and ask Alipay’s technical support staff to help you integrate
(6) Alipay’s technical support staff will call you within 48 hours after you apply for integration. You tell her that you are a WordPress system, tell her that you are the administrator of the website, and ask her to help you set up the WP-based interface program. About 2 hours later, an interface program based on the WP environment will be sent to your email.
(7) The following operations are all based on the PHP host. Win should be similar, but no one uses IIS to configure wp, right?
(8) Send Alipay to your interface program (rar compressed package), decompress it, and then compress it into zip. As for why, because mine is a GD host, I can only use zip. At this time, your interface program has been compressed into alipay.zip
(9) Create a new folder /alipay in your server and upload the alipay.zip compressed package to this directory. Decompress on the server side
(10) After decompression is completed, the path to access the Alipay interface program is: yourdomain.com/alipay/index.php
(11) At this point, more than half of the system achievements of wp and alipay have been completed. The payment channel at this time is ready for use! You can try to make a payment as a user and go to your Alipay account to check whether the payment amount has been credited.
(12) Some modifications: Alipay’s default interface page may not match the overall style of our website. At this time we may need to make some modifications to the page. Such as:
l Modify the name of the payment page at
l Modify the label of the form in
l Modify the text block in the right column of the payment page in
l Modify the content of the footer position at
Some other basic settings:
l Open the alipay_config.php file
l Modify the jump page after completing payment at $return_url=. You may need to manually create a page similar to complete-payment.html in the root directory to let the user know what he should do after handing the money to you;
l Set whether to enable the anti-phishing function at $antiphishing=. Alipay recommends that you contact the official before opening it. Once it is opened, it cannot be closed;
l In the $mainname= “Payee Name”; line of code, replace the payee name with the name of your website.
4. Some thoughts
(1) What is applicable is the best;
(2) Try to solve the problem yourself, and many problems will be solved easily;
(3) Technology is not a supernatural event, everything is rational, and the average person’s intelligence is enough to understand the inside story of most technologies;
(4) Except for some xhtml, no complex code modifications are used;
(5) Complete.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to master Bootstrap customization and component usage includes: 1. Use CSS variables and Sass preprocessor for style customization; 2. Deeply understand and modify component structure and behavior. Through these methods, a unique user interface can be created to improve the responsiveness and user experience of the website.

The logical non-operator (!) has the priority next to parentheses, which means that in expressions, it will precede most other operators. Understanding priority not only requires rote memorization, but more importantly, understanding the logic and potential pitfalls behind it to avoid undetectable errors in complex expressions. Adding brackets can clarify expression intent, improve code clarity and maintainability, and prevent unexpected behavior.

The best practices of default in C language: place it at the end of the switch statement as the default processing for unmatched values; it is used to handle unknown or invalid values to improve program robustness; avoid duplication with case branches to maintain conciseness; comment clearly on the purpose of the default branch to improve readability; avoid using multiple defaults in one case to maintain clarity; keep the default branch concise and avoid complex operations; consider using enumeration values as case conditions to improve maintainability; in large switch statements, use multiple default branches to handle different situations.

Opening an XML file on your phone is usually safe because it is a verifiable, text-based format that does not contain malicious code. However, caution is required because XML files may come with malicious attachments, contain malicious URLs, or contain sensitive information. For increased security, verify the source, use an XML validator, check URLs, treat attachments with caution, and update the software regularly.

Methods to efficiently and elegantly find the greatest common divisor in C language: use phase division to solve by constantly dividing the remainder until the remainder is 0. Two implementation methods are provided: recursion and iteration are concise and clear, and the iterative implementation is higher and more stable. Pay attention to handling negative numbers and 0s, and consider performance optimization, but the phase division itself is efficient enough.

Regarding FileReader instantiation and file reading In front-end development, we often need to process files uploaded by users. use

Why doesn't my code take effect when using RxJS to operate on streams? Learning RxJS...

In C/C code review, there are often cases where variables are not used. This article will explore common reasons for unused variables and explain how to get the compiler to issue warnings and how to suppress specific warnings. Causes of unused variables There are many reasons for unused variables in the code: code flaws or errors: The most direct reason is that there are problems with the code itself, and the variables may not be needed at all, or they are needed but not used correctly. Code refactoring: During the software development process, the code will be continuously modified and refactored, and some once important variables may be left behind and unused. Reserved variables: Developers may predeclare some variables for future use, but they will not be used in the end. Conditional compilation: Some variables may only be under specific conditions (such as debug mode)
