看起来这个错误在互联网上很常见。但遗憾的是,这些解决方案都没有帮助我......
所有网站在WAMP都运行良好,但Wordpress没有!!!
我认为这是因为它using System.Collections.ObjectModel;
namespace WpfApplication1
{
public partial class MainWindow
{
public MainWindow()
{
InitializeComponent();
}
public ObservableCollection<Data> DataCollection { get; } = new ObservableCollection<Data>
{
new Data { Name = "Foo", Type = "bool" },
new Data { Name = "Bar", Type = "enum" }
};
}
public class Data
{
public string Name { get; set; }
public string Type { get; set; }
}
}
因此它否定了连接......
这是我尝试过的:
更换端口(没有工作)。
更改httpd.conf(没有工作)。
更改浏览器(没有工作......但它必须适用于所有这些)
尝试了不同的电脑(没有工作)。
我正在使用Windows 10 ....如果在Mac上使用本地服务器的东西更容易,请将我链接到有关如何操作的资源!
谢谢!
注意:如果你想要httpd.conf(因为它使用它解决了大多数问题)
这里是:
https
答案 0 :(得分:1)
你有几个选择。如果其他HTTPS站点不起作用,那么我认为您希望将Wordpress站点的URL更改为HTTP。
在您的数据库中,更改siteurl
表格中的home
和wp_options
列。如果您已有现有内容(帖子,媒体等),那么您可能需要take things a bit further。
您的另一个选择是让HTTPS在WampServer中运行。我很长一段时间没有使用过这个软件,但据我记忆,它并不是特别琐碎。这是与instructions from the official WampServer forum的链接。