我正在开发一个使用.Net System.Net.WebRequest通过php与MySQL服务器通信的C#应用程序。它运行得很好,直到我把我的虚拟主机服务换成了BlueHost。我的应用程序不再工作,相反,我收到错误消息"WebException: the remote server returned an error:(503) Service Unavailable.“。我联系了BlueHost技术支持,被告知他们不支持C#。
我不知道System.Net.WebRequest必须由web服务器“支持”?!我真的很困惑。我可能会切换回我的旧主机服务,但我想知道更多关于这个问题的信
我有一个网站托管在bluehost上,但使用的域名来自谷歌域名。我试图强迫它总是将http://example.io -> https://example.io从google域站点重定向。
但是,当我添加重定向时,会得到以下错误:
This synthetic record has an error and will not function correctly:
We had a temporary issue creating your SSL certificate. We will automatically keep trying to resolve this issue.
我在bluehost上运行了一个应用程序,但是我无法访问它。
我试过访问域(如mydomain.com:8000),但不起作用。
是否有任何方法可以访问应用程序而不需要专用的ip?
我的应用程序:
var port = 8000;
var express = require('express'),
gen = require('./generator');
var app = express();
app.get('/', function(request, response){
response.send('hel
我在本地主机WAMP服务器和Bluehost上运行这个脚本
$dir = "../DB"
// Open a directory, and read its contents
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "filename:" . $file . "<br>";
}
closedir($dh);
}
}
在我的本地主机中,我得到了这个输出