gpt4 book ai didi

php - 评论未在 Wordpress 上发布 - 空白页

转载 作者:行者123 更新时间:2023-11-28 23:13:50 25 4
gpt4 key购买 nike

我正在研究一个主题 ( http://lillykauffman.com/wordpress/2017/06/26/hello-world/ ),这是我以前做过的,但是如果您尝试发表评论,您将被重定向到一个空白页面。这也发生在其他 WP 主题上,例如 twentysixteen。这是我在 wp-comments-post.php 上的代码:

<?php
/**
* Handles Comment Post to WordPress and prevents duplicate comment posting.
*
* @package WordPress
*/

if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) {
$protocol = $_SERVER['SERVER_PROTOCOL'];
if ( ! in_array( $protocol, array( 'HTTP/1.1', 'HTTP/2', 'HTTP/2.0' ) ) ) {
$protocol = 'HTTP/1.0';
}

header('Allow: POST');
header("$protocol 405 Method Not Allowed");
header('Content-Type: text/plain');
exit;
}

/** Sets up the WordPress Environment. */
require( dirname(__FILE__) . '/wp-load.php' );

nocache_headers();

$comment = wp_handle_comment_submission( wp_unslash( $_POST ) );
if ( is_wp_error( $comment ) ) {
$data = intval( $comment->get_error_data() );
if ( ! empty( $data ) ) {
wp_die( '<p>' . $comment->get_error_message() . '</p>', __( 'Comment Submission Failure' ), array( 'response' => $data, 'back_link' => true ) );
} else {
exit;
}
}

$user = wp_get_current_user();

/**
* Perform other actions when comment cookies are set.
*
* @since 3.4.0
*
* @param WP_Comment $comment Comment object.
* @param WP_User $user User object. The user may not exist.
*/
do_action( 'set_comment_cookies', $comment, $user );

$location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) :
$_POST['redirect_to'] . '#comment-' . $comment->comment_ID;

/**
* Filters the location URI to send the commenter after posting.
*
* @since 2.0.5
*
* @param string $location The 'redirect_to' URI sent via $_POST.
* @param WP_Comment $comment Comment object.
*/
$location = apply_filters( 'comment_post_redirect', $location, $comment );

wp_safe_redirect( $location );
exit;

我不知道为什么这不起作用,因为它直接来自 WP,网上的其他人也有这个错误,因为他们的文件是空白的,我的情况不是这样。所有这些代码看起来都是有序的。我的 MySQL 版本是 5.7,所以这应该不是问题,但在这一点上,我什至不知道出了什么问题——代码、安装、我的托管。任何帮助将不胜感激。

更新:我的主持人宣传完整的博客、评论和讨论区功能,但我联系了他们,他们说“不是真的”。显然他们不支持评论或电子邮件发送。真是浪费。感谢大家的帮助!

最佳答案

当您使用检查管理器查看您的问题页面时,您可以看到您的问题是 410 代码错误。 410 error image

410 Gone

Indicates that the resource requested is no longer available at the server and will not be available again.

此错误可能以多种方式发生。

这是一些检查点的列表,可以帮助您找到问题:

1. 在 wp-config.php 中启用调试

     // Enable WP_DEBUG mode
define( 'WP_DEBUG', true );

// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );

// Enable display of errors and warnings
define( 'WP_DEBUG_DISPLAY', true );
@ini_set( 'display_errors', 1 );

并测试以了解您的错误是否出现。您将能够快速修复它。

2. 重置永久链接

不知道为什么,但有时,由于旧的永久链接,Wordpress 会出现一些奇怪的错误。

我建议你

  • 转到 设置 -> 永久链接
  • 切换永久链接设置,
  • 保存,
  • 将其替换为您当前的配置,
  • 再次保存。

3. 停用所有插件。

如果它有效,请一个接一个地激活插件,以便能够检测到是哪个插件造成了这个错误。

4. 刷新您的 .htaccess

放置基本的 wordpress .htaccess。有时,某些插件会更改 .htaccess 中的规则并引发许多重定向错误。

5. 将您的主题切换为默认主题,无需修改

它可以帮助您了解主题中的自定义规则是否会导致此错误。

6. 从全新安装中重新上传 wp-admin 和 wp-includes

7. 重置文件夹写/读权限

你可以阅读 Changing File permissions in Wordpress帮助您了解应该更改什么以及应该做什么。

8. 最终,创建全新安装的 Wordpress

关于php - 评论未在 Wordpress 上发布 - 空白页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44773431/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com