搜虎博客 - 道德当身,故不已物惑

“itquanquan”发布的文章

宝塔typecho配置伪静态

打开宝塔面板---网站---设置--伪静态,填入下面内容 ```bash if (-f $request_filename/index.html){ rewrite (....

PHP json_decode()解析json,long类型解析出错

>php json.decode 解析的json字符串里面有long类型数字,会溢出,使用下面 JSON_BIGINT_AS_STRING避免 ##### 错误: ```php j...

drupal9 使用CustomBookNavigationBlock报错:Call to a member function getCurrentRequest() on null in Drupal\d8module\Plugin\Block\CustomBookNavigationBlock->build()

> 使用CustomBookNavigationBlock,报错:Call to a member function getCurrentRequest() on null in Drupal\...

mount nfs报错:mount.nfs: access denied by server while mounting

> mount -t nfs 192.168.19.133:/volume3/supreme5 /www/wwwroot/data 报错:mount.nfs: access denied by ...

debian root登陆openssh 报错:Permission denied, please try again.

> debian 开启ssh和root登陆, ##### 安装openssh ```bash sudo apt update sudo apt install openssh-s...

DAMA BOK2 第五章 数据建模和设计

> dama bok2 第五章的摘要笔记 #### 建模方案 * 关系建模方案Schema---三层模型(逻辑/概念/物理) 可以用与RDBMS和多维数据库,其他类型的库,只能用概念...

pycharm 指定版本安装依赖包

> 有时候安装了几个版本的python,怎么指定版本安装包呢,直接找到路径,运行下面的命令。 ##### 如我得3.7安装在 C:\Python\Python37\python.exe...

macos安装brew/python

> 使用国内景象安装,中间会让你选择镜像源 ##### 安装brew ```bash /bin/zsh -c "$(curl -fsSL https://gitee.com/cun...

Rust开发环境准备,mac版

1. 安装Rust ```bash curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh ``` 2. ...

http自动跳转到https,php空间

>买了php空间,但是不能直接设置强制https,那么可以修改.htaccess文件来完成 ##### 打开.htaccess文件,加入如下语句即可 ``` bash Rewrit...