## 1创建并连接ECS实例 打开终端,登录,输入密码,阿里云默认是root # ssh root@112.124.31.147 命令行环境 如果是mac和linux可直接用自己终端,window要下载工具 ## 配置hostname # cd ~/.ssh/ 新建config文件 # touch ...
分类:
Web程序 时间:
2019-12-14 18:56:59
阅读次数:
111
解决方案:在web.config文件system.web/compilation节点添加配置节点: <compilation debug="true" targetFramework="4.7.1" > <assemblies> <add assembly="netstandard, Version ...
分类:
Web程序 时间:
2019-12-14 12:00:20
阅读次数:
868
修改web.config文件: 原文地址:https://blog.csdn.net/youbl/article/details/78028092 ...
分类:
其他好文 时间:
2019-12-13 17:59:07
阅读次数:
294
1.新建一个控制台应用程序 2.右键引用--管理NuGet程序包,安装如下几项 3.打开App.config文件,加入如下代码: <connectionStrings> <add name="conn" connectionString="server=localhost;port=3306;uid ...
分类:
其他好文 时间:
2019-12-11 09:17:45
阅读次数:
94
一、免密登录 (1) 配置公钥 ssh-keygen (2)让远程服务器记住公钥 ssh-copy-id 用户名@ip地址或域名 二、设置别名 (3)在~/.ssh目录下创建并编辑config文件 vim config(centos) vim config(ubuntu) (4)config文件内容 ...
分类:
系统相关 时间:
2019-12-07 16:30:53
阅读次数:
98
问题描述: 在GitHub上传自己本地项目后,发现存在问题,然后在Github删除后,使用IDEA重新上传时遇到了问题,一直提示“project is already on github” 解决方案: 1.关闭IDEA,在本地项目中找到.git隐藏文件夹。 2.进入该文件夹,找到config文件。 ...
分类:
Web程序 时间:
2019-12-07 12:17:52
阅读次数:
232
1.创建一个请求类(HttpWork): HttpWork.h头文件 #pragma once #include <QObject> #include <QNetworkAccessManager> #include <QNetworkReply> #include "NetWorkCookie.h ...
分类:
Web程序 时间:
2019-12-06 09:15:58
阅读次数:
246
global.asax.cs文件中 增加 private void Application_BeginRequest(object sender, EventArgs e) { if (HttpContext.Current.Request.HttpMethod == "OPTIONS") { ..... ...
分类:
Web程序 时间:
2019-12-04 01:19:28
阅读次数:
669
一. 就目录而言 1、在项目的二级目录的config文件夹中,index.js文件中host为本地访问网络时的Ip地址,默认是localhost。 注意:在上传版本的时候,提前将host的值改为默认。 (在pc端查看Ip地址的方法:window+R,输入cmd ,输入ipconfig)。 2、在项目 ...
分类:
其他好文 时间:
2019-11-30 19:05:55
阅读次数:
72
找到C:\Windows\System32\inetsrv\config\applicationHost.config 文件; 找到这段代码 <handlers accessPolicy="Read, Script"> 找到<add name="PHP" path="*.php" ......... ...
分类:
Web程序 时间:
2019-11-30 14:08:55
阅读次数:
139