摘要:
在命令行中,注意不是登录mysql的命令行 devicepointchecksubmit 为待导出的数据库 192.168.48.1 为devicepointchecksubmit库所在的主机IP dmp.sql 为导出到本地后的名称 mysqldump -h 192.168.48.1 -u roo 阅读全文
摘要:
PHP安装参考链接: https://blog.csdn.net/maohedashu/article/details/135403350 Mysql安装参考链接 https://www.runoob.com/mysql/mysql-install.html 阅读全文
摘要:
在/etc/httpd/conf/httpd.conf中的添加圈出的代码: 下载问题,直接执行,然后重启apache: yum install mod_php 阅读全文
摘要:
添加放行的服务和端口 firewall-cmd --permanent --add-service=http firewall-cmd --permanent --add-port=81/tcp 查询是否已经放行 firewall-cmd --permanent --query-service=ht 阅读全文
摘要:
见图: 添加代码如下: <option name="delegatedBuild" value="false" /> 阅读全文
摘要:
先查看端口号: 然后到AS配置:HTTP 代理 阅读全文
摘要:
在Android Studio 的 terminal 执行命令 flutter build web 打包后的文件在项目目录下的:build目录下 然后是tomcat或phpStudy发布网站,加载首页出线白屏,解决办法: 打开打包后的网站首页【index.html】文件,,将/删掉 阅读全文
摘要:
CustomPaint类似一个画布。 CustomPainter类似一个画家,抽象类,需要继承并配置。 Paint类 class demo extends StatelessWidget{ @override Widget build(BuildContext context) { return C 阅读全文