漏洞概述: PHPUnit 是 PHP 程式语言中最常见的单元测试 (unit testing) 框架,通常phpunit使用composer非常流行的PHP依赖管理器进行部署,将会在当前目录创建一个vendor文件夹.phpunit生产环境中仍然安装了它...
设置NPM/Electron国内源
Yarn设置国内镜像 yarn config set registry https://registry.npm.taobao.org yarn config set disturl https://npm.taobao.org/dist yarn config set electron_mirror https://npm.taobao.org/mirrors/elect...
npm设置python路径
npm config set python=E:/command_program/Miniconda2/envs/py27_32/python.exe
conda安装32位python
set CONDA_FORCE_32BIT=1 conda create -n py27_32 python=2.7
windows手动安装宝塔
0.复制windows server的btsoft到本地 1.新建环境变量 BT_PANEL=D:\Btsoft\panel BT_PYTHON=E:\command_program\Miniconda2\envs\bt3 BT_SETUP=D:\Btsoft 加入path环境变量 E:\command_program\sqlite3 E...
将pip源更换到国内镜像 用pip管理工具安装库文件时,默认使用国外的源文件,因此在国内的下载速度会比较慢,可能只有50KB/s。幸好,国内的一些顶级科研机构已经给我们准备好了各种镜像,下载速度可达2MB/s。 其...
How to Install Sqlite3 on Windows 10
Sqlite is a serverless relational database management system, what we called as an embedded database. It is very lightweight and very easy to use. In this article we are going to see how to install...
Using Python environments in VS Code
An "environment" in Python is the context in which a Python program runs. An environment consists of an interpreter and any number of installed packages. The Python extension for VS Code provides h...
如何使用FFmpeg将视频转成图片_图片转成视频
视频转图片命令 ffmpeg -i input.flv -r 25 -f image2 image-%3d.jpeg -i : 指定输入文件 -r : 帧数 25 -f : 指定格式化的格式为image2 生成的结果 image-%3d.jpeg %3d是指3位数字 图片转视频 ffmpeg -i ...
WordPress在IIS主机下,伪静态后中文URL报404的解决方案
新建 index2.php <?php // IIS Mod-Rewrite if (isset($_SERVER['HTTP_X_ORIGINAL_URL'])) { $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL']; } // IIS Isapi_Rewrite ...