无法上传文件到 Godaddy 服务器
Unable to upload files into Godaddy server
当我尝试将图片上传到 Godaddy 时,我只能上传较小尺寸的图片。
我已经在我的网络配置中使用了这个,但是我仍然无法上传更大的文件
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
在您的网络配置中,您需要在 System.web
中添加 maxRequestLength
以及上述配置
例如:
<httpRuntime maxRequestLength="600000" />
当我尝试将图片上传到 Godaddy 时,我只能上传较小尺寸的图片。
我已经在我的网络配置中使用了这个,但是我仍然无法上传更大的文件
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
在您的网络配置中,您需要在 System.web
中添加 maxRequestLength
以及上述配置
例如:
<httpRuntime maxRequestLength="600000" />