Operations Java Scala for for(int i=0;i<1;i++){System.out.print(i);}
Category: Web
Shell VS PHP
Bash PHP Comments Variables Operators Logical if else for String Boolean Numeric Calculate Echo & print Function Array File Net
英文符号读法
符号 读法 , comma 逗号 . period, dot 句号,点 ? question mark ! exclamation mark (英式英语) exclamation point (美式英语) @ At sign, at # pound, number signs 井号 $ dollar % percent 百分号 ^ Caret & ampersand, and, reference, ref 和,引用 * asterisk, multiply, star, pointer 星号,乘号,星,指针 ( ) brakets/ parentheses 括号 – minus, hyphens 减号;负号 _ underscore (下划线) + plus 加号;正号 =…
KOPS Create cluster on AWS Global
[ec2-user@ip-172-31-22-49 ~]$ dig ns dev.heoffice.com ; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.62.rc1.56.amzn1 <<>> ns dev.heoffice.com;; global options: +cmd;; Got answer:;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64454;; flags: qr rd ra; QUERY: 1, ANSWER: 4, AUTHORITY: 0, ADDITIONAL: 0 ;; QUESTION SECTION:;dev.heoffice.com. IN NS ;; ANSWER SECTION:dev.heoffice.com. 172800 IN NS ns-0.awsdns-00.com.dev.heoffice.com. 172800 IN NS ns-1024.awsdns-00.org.dev.heoffice.com. 172800 IN NS…
阿里云服务器+宝塔Linux+Certbot实现网站的SSL, HTTPS访问
需要: 已安装了宝塔Linux面板的阿里云服务器(Centos7),certbot.eff.org 1. 在服务器上安装snap 参见:https://snapcraft.io/docs/installing-snap-on-centos 2. 通过Snap安装Certbot 移除之前的证书软件,使用snap安装Certbot: 3. 手动使用Certbot 获取证书 宝塔系统的Nginx配置文件存放在/www/server/nginx/conf,默认情况下Certbot的Nginx插件无法找到nginx.conf配置文件,做个软连接让Certbot能找到nginx.conf文件 手动运行获取证书命令 把其中的example.com换成自己的域名,Certbot会为您生一个密钥,并提示把该密钥放到网站的/www/wwwroot/example.com/.well-known/acme-challenge目录下,确保http://example.com/.well-known/acme-challenge/McVrtxbb6vdx6tSCnULPgNxAhcyKjDpld-a2j_abcd能访问,然后按回车键让Certbot完成证书注册与配置,完成后会有提示信息。 4. 查看结果 进入宝塔系统,打开网站的配置窗口,SSL选项卡,就能看到已为您自动生成Let’s Encrypt免费证书 启用crontab 30 2 * * * /usr/local/bin/certbot-auto renew >> /www/server/panel/logs/certbot.log
Rest FUll API 中添加WTI LIKE POST 插件的喜欢数。
WordPress 的 WTI LIKE POST 插件的喜欢数默认是添加在Content中的,而在Wordpress 的REST FULL API 中没有喜欢数相关字段,只需在wti_like_post.php中添加以下代码就能够在RESTFULL API中添加likes字段了: add_action( ‘rest_api_init’, function () { register_rest_field( ‘post’, ‘likes’, array( ‘get_callback’ => function( $post_arr ) { return GetWtiLikeCount($post_arr[‘id’]); }, ‘schema’ => array( ‘description’ => __( ‘Likes .’ ), ‘type’ => ‘integer’ ), ) ); } ); 当API请求时,文章内容中不显示点赞按钮, 在wti_like_post_site.php中的函数function PutWtiLikePost($content) 添加以下代码, if( isset($_SERVER[‘REQUEST_URI’]) && strpos($_SERVER[‘REQUEST_URI’],’/wp-json/wp/v2/’)!== false…
SSH-COPY-ID 不再每次登录服务器时输入密码!
检查本地机器文件 .ssh/id_rsa.pub 是否存在, 不存在时,执行 ssh-keygen -t rsa -b 2048 然后把本地密钥通过命令 ssh-copy-id 复制到 远程服务器。 ssh-copy-id root@xxxx.com以后登录服务器,只需要运行 ssh ‘root@xxxx.com‘ 就可以了