Category: 后端
-
在 Ubuntu16.04 系统为 Apache 服务器安装 Let’s Encrypt 证书
By using Let’s Encrypt for SSL, you will be able to encrypt transactions/data your site free of charge. The following tutorial will cover the entire process of installing the Let’s Encrypt client to installing your SSL certificate on Ubuntu 16.04. By the end of this Ubuntu guide you will be able to create Let’s Encrypt…
-
Ubuntu 16.04 下 Mysql5.7.17 源码编译与安装
系统环境 ubuntu 16.04 64 位 官方文档说明:http://dev.mysql.com/doc/refman/5.7/en/source-installation.html 一、 系统安装条件 1.cmake MySQL 使用 cmake 跨平台工具预编译源码,用于设置 mysql 的编译参数。 2.bison Linux 下 C/C++ 语法分析器 3.ncurses 字符终端处理库 4. gcc GCC 是 Linux 下的 C 语言编译工具,mysql 源码编译完全由 C 和 C++ 编写。Ubuntu 默认已装。 5. Boost 1.59.0 mysql 源码中用到了 C++ 的 Boost 库,要求必须安装 boost1.59.0 下载 Boost1.59.0 源代码,并解压到 /usr/local/ 目录下: 二、 下载 MySQL 源码 三、 编译…
-
在 Ubuntu linux 下以编译方式安装 LAMP (apache mysql php) 环境
在 ubuntu linux 下以编译方式安装 LAMP (apache mysql php) 环境
-
WordPress 主题机制的运行原理
基本思想 PHP(外文名:PHP: Hypertext Preprocessor,中文名:“超文本预处理器”)是一种通用开源脚本语言。 PHP 代码的可以完成功能:显示出 html 的字符串标签的代码。WordPress 的首页 index.php 的 get_header ()、get_sidebar ()、get_footer () 等函数返回的结果用 echo 输出是带有 html 标签的代码段。 主题包各文件说明 从源码看主题的调用过程 当浏览器向 apache 发送请求要得到博客主页的 HTML 代码时,./index.php 被调用。./index.php 中的 require (‘./wp-blog-header.php’); 调用./wp-blog-header.php。而./wp-blog-header.php 做了一些链接数据库包含头文件等处理,其中有两件事情与主题调用有关:1、有 require_once (dirname (__FILE__) ./wp-includes/functions.php’);而./wp-includes/functions.php 中包含进了./wp-includes/theme.php,这里定义了 get_home_template ()。 其中 apply_filters () 的作用是:将 $template hook 到 tag=’home_template’的 filters 上并返回 $template,也就是主题包的路径。 2、有 require_once (ABSPATH . WPINC .…
-
Syncing a fork
Sync a fork of a repository to keep it up-to-date with the upstream repository. Before you can sync your fork with an upstream repository, you must configure a remote that points to the upstream repository in Git. 1, Open Git Bash. 2, Change the current working directory to your local project. 3, Fetch the branches and their respective commits from…
-
Github 如何 pull request 贡献代码
举例来自:https://github.com/vnpy/vnpy(作者为了这个项目,讲解得真是细致) vn.py 使用 github 托管其源代码,如果希望贡献代码请使用 github 的 PR (Pull Request) 的流程: