php7版本openssl扩展升级安装,swoole openssl扩展安装高版本自定义编译安装 php升级openssl扩展,swoole升级openssl扩展 报错configure: error: Cannot find OpenSSL's libraries异常使用第三项 php升级open ...
分类:
Web程序 时间:
2020-07-02 16:12:30
阅读次数:
76
1安装mariadb数据库 1. 配置阿里云源 参考链接: https://developer.aliyun.com/mirror 2. 使用阿里云源安装mariadb dnf -y install mariadb-server mariadb-client 1.1 .1 使用systemctl进行 ...
分类:
其他好文 时间:
2020-07-02 13:36:20
阅读次数:
68
` $imgName = html标签中img的名字; //$_FILES[$imgName]["name"] 获取图片本身的名字 拼接路径判断服务器目录是否已经有该图片 if (!(file_exists("../Public/img/" . $_FILES[$imgName]["name"])) ...
分类:
Web程序 时间:
2020-07-02 13:33:46
阅读次数:
71
问题现象 部署的docker容器运行一端时间以后,由于需要修改配置,需要重启容器,但是重启的时候,报如下错误: Error response from daemon: Cannot restart container rsnmp_v4: OCI runtime create failed: cont ...
分类:
其他好文 时间:
2020-07-02 13:19:58
阅读次数:
66
在c++标准11之前,c++在函数声明中有exception功能,用来指定函数抛出的异常类型。 void func1() throw(runtime_error); // 可能抛出runtime_error的异常 void func2() throw(); // 不会抛出任何异常 void func ...
分类:
编程语言 时间:
2020-07-02 11:59:24
阅读次数:
62
在创建javaweb项目的时候报错,如下:Error:(5, 59) java: 程序包javax.servlet.http不存在Error:(6, 45) java: 程序包javax.servlet.http不存在Error:(6, 92) java: 程序包javax.servlet.http ...
分类:
编程语言 时间:
2020-07-02 09:13:15
阅读次数:
69
问题描述: 系统版本选择11.0,如下图: 指令集设置armv7 和 arm64 打包出来的app只支持arm64 ,如下图: 解决:修改适配系统版本到iOS10以下即可, 分析: 修改Architectures 为 arm64、armv7 支持的指令集是Architectures 和 Valid ...
分类:
移动开发 时间:
2020-07-01 20:43:00
阅读次数:
191
是因为服务器系统为64位,但是交叉编译工具链是32位。 重装glibc yum install glibc.i686 遇到报错 There was a problem importing one of the Python modulesrequired to run yum. The error ...
分类:
系统相关 时间:
2020-07-01 20:42:43
阅读次数:
89
其中:2env为使用virtualenv创建的虚拟环境, lianxi目录为我已下载好各类的离线库包(按自己的使用需要去下载),ceshi3.txt是我本次想要安装的库列表 (2env) [root@xxxx]$ ./2env/bin/python wsgi.py[warning] no local ...
分类:
其他好文 时间:
2020-07-01 20:39:52
阅读次数:
65
(一)问题:json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) (二)原因:request的GET请求/POST请求,反作用域为空的异常未考虑 (三)代码描述:未做空返回判断,我是因为调用的接口函数错误导致。 ...
分类:
编程语言 时间:
2020-07-01 20:18:56
阅读次数:
113