简体   繁体   English

激活wordpress seo插件后无法访问该网站

[英]Cant access the site after activating the wordpress seo plugin

I have installed the wordpress seo (yoast) plugin on my wordpress site, but if i am activating the plugin it breaks the site. 我已经在我的wordpress网站上安装了wordpress seo(酵母)插件,但是如果我激活该插件,它将破坏该网站。 I can access the backend (dashboard) but nothing is visible on front end. 我可以访问后端(仪表板),但前端看不到任何东西。 It's showing an error message 显示错误信息

"The page isn't redirecting properly “页面无法正确重定向

Firefox has detected that the server is redirecting the request for this address in a way that will never complete. Firefox已检测到服务器正在以永远无法完成的方式重定向对该地址的请求。

This problem can sometimes be caused by disabling or refusing to accept cookies."

I have already gone through the plugin support but couldn't find anything related to this. 我已经通过了插件支持,但是找不到与此相关的任何内容。

Please provide any solution to resolve the issue. 请提供任何解决问题的方法。

Thanks! 谢谢!

There might many causes of breaking site after activating plugin. 激活插件后,可能有很多导致站点中断的原因。 In your case, may be the reason is memory limit. 在您的情况下,可能是内存限制的原因。 Please try to add support for more limit. 请尝试添加支持以获取更多限制。 You can use WP_MAX_MEMORY_LIMIT to increase it. 您可以使用WP_MAX_MEMORY_LIMIT来增加它。

You can debug the site using WP_DEBUG in wp-config.php, set it true you will get all the warnings and fatal errors to check the main cause of break. 您可以在wp-config.php中使用WP_DEBUG调试站点,将其设置为true,您将获得所有警告和致命错误,以检查中断的主要原因。

I Request you to enable debug the site using WP_DEBUG in wp-config.php, set it true you will get all the warnings and fatal errors to check the main cause of break. 我要求您使用wp-config.php中的WP_DEBUG启用调试站点,将其设置为true,您将收到所有警告和致命错误,以检查中断的主要原因。 as mentioned above by @Trimantra Software Solutic. 如@Trimantra Software Solutic所述。

Go to wp-config.php and find define('WP_DEBUG', false); 转到wp-config.php并找到define('WP_DEBUG', false); replace with below 用下面替换

define('WP_DEBUG', true);

After then you will find the error ! 之后,您将发现错误!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM