阿里云虚拟主机使用 Typecho 1.1 开启伪静态后打开子页面报错
官方推荐规则在其他环境使用完全正常,到阿里云虚拟主机这就不行了 ┑( ̄Д  ̄)┍
删掉后面的 $1 last就好了
location / {
if (!-e $request_filename) {
rewrite (.*) /index.php;
}
}
官方推荐规则在其他环境使用完全正常,到阿里云虚拟主机这就不行了 ┑( ̄Д  ̄)┍
删掉后面的 $1 last就好了
location / {
if (!-e $request_filename) {
rewrite (.*) /index.php;
}
}
package.json
{
"name": "",
"version": "1.0.0",
"description": "",
"author": "",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build-win32": "electron-builder --ia32",
"build-win64": "electron-builder --x64"
},
"repository": "",
"keywords": [],
"license": "",
"devDependencies": {
"electron": "^17.0.1",
"electron-builder": "^22.14.13"
},
"build": {
"productName": "",
"appId": "",
"copyright": "",
"compression": "maximum",
"directories": {
"output": "build"
},
"asar": false,
"win": {
"icon": "logo/256.ico",
"artifactName": "${productName}_setup_${version}.${ext}"
},
"mac": {
"icon": "logo/512.png",
"artifactName": "${productName}_setup_${version}.${ext}"
},
"linux": {
"icon": "logo/256.ico",
"artifactName": "${productName}_setup_${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "logo/256.ico",
"uninstallerIcon": "logo/256.ico",
"installerHeaderIcon": "logo/256.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": ""
}
}
}
打包程序
npm run build
# 以管理员权限运行,避免权限不足报错
读取到的文件默认是根据修改时间排序的,如果要根据文件名排序可以使用
fileInfos.OrderBy(f => f.Name);
得到的顺序为:1、10、2、3 ... 9,使用以下方法即可解决
DirectoryInfo directoryInfo=new DirectoryInfo(folderPath);
FileInfo[] fileInfos= directoryInfo.GetFiles();
List<string> files=new List<string>();
Array.Sort(fileInfos, (x1, x2) => int.Parse(Regex.Match(x1.Name, @"\d+").Value).CompareTo(int.Parse(Regex.Match(x2.Name, @"\d+").Value)));
foreach (FileInfo file in fileInfos)
{
files.Add(file.FullName);
}
密码过期可以使用命令行登录
mysqld -uroot -p***
此时如果执行其他命令会报错
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
执行以下命令重置密码即可
alter user user() identified by "123456";
如果要设置密码永不过期可以执行
set global default_password_lifetime = 0;
返回参数单位为Byte(字节)
//Linux下获取磁盘"/"的总容量
disk_total_space('/')
//Linux下获取磁盘"/"的剩余容量
disk_free_space('/')
# 32位
electron-packager . 'ProjectName' --platform=win32 --arch=ia32 --icon=logo.ico --out=./OutputPath --asar --app-version=1.0.0
# 64位
electron-packager . 'ProjectName' --platform=win32 --arch=x64 --icon=logo.ico --out=./OutputPath --asar --app-version=1.0.0
使用runas指令
runas /user:管理员用户名 /env /savecred "程序地址"
/env 表示以当前用户环境运行
/savecred 表示存储凭据,只有第一次执行需要输入密码
ignore_user_abort(true);
//客户端关闭仍继续执行
set_time_limit(0);
//不限制脚本执行时间
包含 a-z、A-Z、0-9,如果要追加符号,按序增加在数组$string_arr
内,并修改mt_rand(1, 62)
的第二个参数为增加后的数组的最大键值。
<?php
function rand_string($lenght){
$string_arr = [
1 => 'a', 2 => 'b', 3 => 'c', 4 => 'd', 5 => 'e', 6 => 'f', 7 => 'g',
8 => 'h', 9 => 'i', 10 => 'j', 11 => 'k', 12 => 'l', 13 => 'm', 14 => 'n',
15 => 'o', 16 => 'p', 17 => 'q', 18 => 'r', 19 => 's', 20 => 't', 21 => 'u',
22 => 'v', 23 => 'w', 24 => 'x', 25 => 'y', 26 => 'z', 27 => 'A', 28 => 'B',
29 => 'C', 30 => 'D', 31 => 'E', 32 => 'F', 33 => 'G', 34 => 'H', 35 => 'I',
36 => 'J', 37 => 'K', 38 => 'L', 39 => 'M', 40 => 'N', 41 => 'O', 42 => 'P',
43 => 'Q', 44 => 'R', 45 => 'S', 46 => 'T', 47 => 'U', 48 => 'V', 49 => 'W',
50 => 'X', 51 => 'Y', 52 => 'Z', 53 => '1', 54 => '2', 55 => '3', 56 => '4',
57 => '5', 58 => '6', 59 => '7', 60 => '8', 61 => '9', 62 => '0'
];
$res = "";
for($i = 0; $i < $lenght; $i++){
$res .= $string_arr[mt_rand(1, 62)];
}
return $res;
}