后端 第25页
CentOS如何升级openssl到最新版本-Ddmit

CentOS如何升级openssl到最新版本

环境信息 CentOS Linux release 7.6.1810 (Core); OpenSSL 1.0.2k-fips 26 Jan 2017; OpenSSL 1.1.1c 28 May 2019 依赖 sudo yum -y install perl perl-devel gcc gcc-c++ 升级 查看当前版本 ...
ddmit的头像-DdmitDdmit5年前
31.1W+3
解决openssl make test错误:No plan found in TAP output-Ddmit

解决openssl make test错误:No plan found in TAP output

在编译安装Openssl时报错,具体如下。 环境 CentOS Linux release 7.3.1611 (Core); OpenSSL_1_1_1d.tar.gz; 错误 在源码安装openssl时,进行make test时报错如下: Parse errors: No plan f...
ddmit的头像-DdmitDdmit5年前
30962
如何解决Chrome的表单自动填充问题?-Ddmit

如何解决Chrome的表单自动填充问题?

自动填充会带来隐私和安全性问题,如果非私人电脑这个问题很烦人,解决办法如下: 用户 在浏览器设置,自动填充里取消自动填充: 开发者 设置autocomplete='off'属性。 <input type='text' a...
ddmit的头像-DdmitDdmit5年前
16100
如何让div占满整个浏览器窗口-Ddmit

如何让div占满整个浏览器窗口

解决办法: div { height: 100vh; } References: How to make a div 100% height of the browser window;
ddmit的头像-DdmitDdmit5年前
14270
Jenkins安装插件错误:No such plugin: cloudbees-folder解决办法-Ddmit

Jenkins安装插件错误:No such plugin: cloudbees-folder解决办法

安装完Jenkins并启动服务,在浏览器里进行插件安装时报错: 安装过程中出现一个错误: No such plugin: cloudbees-folder 环境信息 Windows 10 ; Jenkins 2.222 ; 原因 本地插件库(D:\Program...
ddmit的头像-DdmitDdmit5年前
25310
CentOS 8安装Redis的两种方式-Ddmit

CentOS 8安装Redis的两种方式

本文使用两种方式安装Redis,一种是通过yum方式安装,一种是通过源码编译安装。 一、环境信息 CentOS Linux release 8.1.1911 (Core); Redis 5.0.7 Stable Version; 二、yum方式安装 国内的话...
ddmit的头像-DdmitDdmit5年前
048730
利用mysql批量替换wordpress文章内容/图片路径-Ddmit

利用mysql批量替换wordpress文章内容/图片路径

比如我要替换文章内容中涉及到的图片路径: 原来文章中图片路径地址:https://www.4spaces.org/iwwenbo/wp-content/uploads/2018/07/outlook-reliefJet-2.jpg; 新的文章中图片路径地址:https:...
ddmit的头像-DdmitDdmit5年前
015360
CentOS 8修改yum源为国内源-Ddmit

CentOS 8修改yum源为国内源

由于国内网络原因,如果你的服务器在国内的话,在CentOS上安装一些软件速度可能会很慢,因此建议将yum源改为国内源,比如阿里云,方式如下: 环境: CentOS Linux release 8.1.1911 (Core); 1....
ddmit的头像-DdmitDdmit5年前
032031
layui父子页面方法互调-Ddmit

layui父子页面方法互调

父级页面调用子页面方法 layer.open({ type: 2, content: 'test/iframe.html', success: function(layero, index){ var body = layer.getChildFrame('body', index); var iframeWin = window[la...
ddmit的头像-DdmitDdmit5年前
014640
Vue获取点击事件的Dom元素对象-Ddmit

Vue获取点击事件的Dom元素对象

当点击页面元素时,如何获取该Dom元素呢? 代码: <div id='app'> <div id='example-1'> <button v-on:click='greet('abc', $event)' id='myBtn'>Greet</button> </d...
ddmit的头像-DdmitDdmit5年前
017660