Wordpress中的HTTP错误403禁止问题

时间:2018-10-22 10:21:44

标签: php css wordpress http-status-code-403

我安装了最新版本的wordpress和woocommerce。最近几个月我面临的问题是,有时当我尝试从Windows 10笔记本电脑访问网站时,它显示空白页-

enter image description here

无论我在笔记本电脑上使用哪种浏览器,都会发生这种情况。我尝试使用Chrome,Firefox和Edge。清除浏览器的历史记录和缓存后,我的网站开始加载正常。该问题会影响整个网站,包括管理部分,主页或任何其他页面。

由于某些原因,此问题仅在我的笔记本电脑上出现。我从未在Android手机上遇到此问题。我什至检查了同时在手机和笔记本电脑上加载网站。在手机上正确加载后,我在笔记本电脑上遇到了同样的问题。

我决定在页面显示为空白时检查页面的源代码。在源代码中,我可以看到它显示错误“ HTTP错误403 –禁止。Web服务器配置为不列出此目录的内容,或者您​​没有足够的权限访问该资源”

下面提到源代码。有人能说出这个问题是什么吗?我在相同的托管计划上有另一个wordpress网站,但从未遇到过此问题。网站名称为

中的oldbookdepot(dot)
<!DOCTYPE html>
<html>
<body>
  <script>

  var xhttp = new XMLHttpRequest();
  xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
      document.getElementById("demo").innerHTML =
      this.responseText;
      document.getElementById("first-header").innerHTML = "HTTP Error 403 - Forbidden";
      document.getElementById("second-sub-header").innerHTML = "The Web server is configured to not list the contents of this directory or you do not have enough permissions to access the resource";
      var get=document.getElementsByTagName("A");
      for(i=0; i<get.length; i++){
        get[i].removeAttribute("onmouseover");
        get[i].removeAttribute("onmouseout");
      }
    }
  };
  xhttp.open("GET", "/errors/MultiDomainHosting.php", true);
  xhttp.send();

  </script>
<style>

.wrapper{
  overflow-y: hidden;
  padding: 0px;
  margin:0px;
  background: none !important;
  width: 100% !important;
}
.header-container {
  text-align: -webkit-center;
  width: 100%;
  height: 150px;
  background: white;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: larger;
}
.header-container > p,h1 {
  padding:5px;
}
.header-container > p {
  color: #707070;
}
.header-container > h1 {
  color: #333333;
}
.content-container {
  position: absolute;
  background-color: #202020;
  height: 635px;
  width: 100%;
}
.dynamic-content {
  position: relative !important;
  padding: 0 10em 0 10em;
  top: -50px;
}
.dynamic-content > div {
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: #e1e1e1;
  height: 550px;
  overflow-y: hidden;
}
@media only screen and (max-width:480px) {
  .dynamic-content > div {
    border-style: solid;
    border-width: 0 2px 2px 2px;
    border-color: #e1e1e1;
    overflow-y: hidden;
    height: auto;
  }
  .dynamic-content {
    padding: 0;
    top: 0;
  }
  .content-container {
    height: auto;
  }
}
@media only screen and (max-width: 768px) and (min-width: 481px)  {
  .dynamic-content > div {
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: #e1e1e1;
    overflow-y: hidden;
    height: auto;
  }
  .dynamic-content {
    padding: 0 2em 0 2em;
    top: 0;
  }
  .content-container {
    height: auto;
  }
}
</style>
<div class="wrapper" id="wrapper">
  <div class="header-container">
    <h1 id="first-header"></h1>
    <p id="first-sub-header"></p>
    <p id="second-sub-header"></p>
  </div>
  <div class="content-container">
  </div>
  <div class="dynamic-content" id="demo">
  </div>
</div>

</body>
</html>

1 个答案:

答案 0 :(得分:0)

通常,没有干预就消失的随机白屏死机(WSOD)的原因是没有足够的内存分配给托管帐户或WordPress。

  1. [WordPress内存设置] [1] https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
  2. 要为PHP分配更多的内存(即使您告诉它使用更多的WordPress,WordPress也不能超过此内存),找到在哪里进行更改比较棘手。
    cPanel和Plesk允许您通过面板进行操作……希望您在那里进行更改。否则,您需要找到正在使用的php.ini文件,并更新memory_limit = ...行。

要记住的一件事是,Plesk(我也想像cPanel)也会根据其他设置自动生成许多文件。请注意php.ini文件上的标头,该标头指出“此文件是自动生成的,将被覆盖-请不要在此处进行更改。”通过对该文件进行更改,如果您解决了WSOD的问题,则在下一个服务器重新启动后它将恢复。

在系统中找不到可以更改PHP内存限制的任何地方?
在许多共享的托管环境中,涉及分配内存时,标准用户会受到托管公司的摆布。尽管从我的经验来看,有些人为我增加了规模,因为他们可能不会收到很多这样的要求。在花费太多时间尝试找到修改的地方之前,请与他们联系。