wordpress website uses wechat-social-login plug-in for QQ, WeChat, Pin, Github, Mobile number login
Wordpress version: wordpress:4.9.8 version
php version: v7.2.12
The dockcer image is: wordpress:4.9.8
Article Directory
Graphic Authentication Code could not be loaded
Ways to view phpinfo()
docker compile mirror
docker compile mirror error
Use a new mirror that integrates freetype
Reference resour ...
Posted by aravind_mg on Sun, 09 Feb 2020 05:44:59 +0100
WeChat Payment Detailed Tutorial Actual
1: This article only aims at the scavenging payment of the third-party native pc platform
1. Noun Interpretation:
1,
WeChat Public Platform
The WeChat public platform is the WeChat public account application entry and management background.Merchants can submit basic data, business data and financia ...
Posted by Viper_4 on Sat, 08 Feb 2020 06:10:20 +0100
Install EPICS in CentOS 6 [detailed operation]
Install EPICS in CentOS 6 [detailed operation]
1, Install EPICS Base
1. Installation tools
2. Install Base
2, Create IOC
1. Create startup file
2. Start IOC
Three, expand
4, Install Extensions
1. Download the installation package
2. Environment settings
3. Install software tools
4. Installation ...
Posted by skyxmen on Thu, 06 Feb 2020 08:38:56 +0100
TinyMCE rich text editor is used in the layui pop-up layer, and data cases are echoed
Refer to TinyMCE Chinese document: http://tinymce.ax-z.cn/quick-start.php
Let's see what I want to achieve
Click Add to pop up a rich text editor, which consists of layer and TinyMCE
Updating: echoing content
The page of the pop-up layer comes alone, because iFrame is used
Edit page, addOr ...
Posted by zushiba on Mon, 03 Feb 2020 15:23:30 +0100
Ubuntu 16.04 install nginx tutorial use nginx+nginx-rtmp-module+ffmpeg to build streaming media server note use ffmpeg command to push existing files
brief introduction
The function of RTMP Streamer in streaming media system can be shown in the following figure. First, the video data is sent to the streaming media Server (Server, such as FMS, Red5, Wowza, etc.) in the form of RTMP, and then the client (generally Flash Player) can watch the real-tim ...
Posted by lol on Sun, 02 Feb 2020 09:59:07 +0100
Lesson 097 php database programming ⑨ - using mysqli extension library (batch execution and transaction control)
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$query = "SELECT CURRENT_USER();";
$query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";
/* execute multi query */ ...
Posted by andymelton on Sat, 25 Jan 2020 16:06:31 +0100
Shell uses ls to find files and directories
Find all directories
ls -F | grep "/$"
-F File type. Indicates that a symbol is added after each enumerated item to mark the File type.
/ indicates a directory;
@Indicates a symbolic link to another file;
*Indicates an executable
ls -l -F /usr/lib
Some of the results are as follows:
-rw-r- ...
Posted by abasel on Wed, 22 Jan 2020 16:01:22 +0100
Simple building of LNMP environment
1. The user initiates the request through http protocol, and the request will first arrive at Nginx in LNMP architecture
2.Nginx will match the Location rule according to the user's request
3.Location if the matching request is static, it will be read by Nginx and returned directly locally
4.Location if ...
Posted by Toonster on Fri, 17 Jan 2020 14:16:52 +0100
ch06 object oriented features
Article directory
Object oriented features
Understanding object-oriented concept
Classes and objects
Polymorphism
inherit
Create classes, properties, and actions
Class structure
Constructor
Destructor
Class instantiation
Use class properties
Call class action
Using private and public keywords to ...
Posted by himnbandit on Wed, 15 Jan 2020 10:27:27 +0100
Create websocket server
swoole has built-in websocket server function since version 1.7.9. We only need a few lines of simple PHP code to create an asynchronous non blocking multi process websocket server.
First of all, we create a new project named swoole in the apache workspace, and then create a new ws-server.php file in the workspace. The PHP file mainly creates ...
Posted by trent2800 on Tue, 07 Jan 2020 09:06:03 +0100