golden hour
/home/godaofbq/globalhealingzen.com
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
236 B
Del
OK
.well-known
-
Del
OK
.well-known23c14a
-
Del
OK
7972e1
-
Del
OK
98c186404387c3
-
Del
OK
bbb.php926605
71.6 KB
Del
OK
boss2026yt
-
Del
OK
br2026yt
-
Del
OK
bz1opak
-
Del
OK
ccc.php7239c4
178.11 KB
Del
OK
click.php
1.87 KB
Del
OK
ed86d
-
Del
OK
egvarwo
-
Del
OK
error_log6672c3
1.99 MB
Del
OK
fenouy1
-
Del
OK
filefuns.php
5.28 KB
Del
OK
goods.php
1.44 KB
Del
OK
google21183ed585aab2b6.html
53 B
Del
OK
index.php
703 B
Del
OK
index.php0
4 B
Del
OK
license.txt2c12b4
19.44 KB
Del
OK
mah.php
1.93 KB
Del
OK
networks.php
1.93 KB
Del
OK
ntlcejo
-
Del
OK
pages.php
733 B
Del
OK
readme.html356c80
7.25 KB
Del
OK
robots.txt
411 B
Del
OK
wp-activate.phpf3a672
7.18 KB
Del
OK
wp-admin1b663b
-
Del
OK
wp-blog-header.php
2.74 KB
Del
OK
wp-blog-header.php78985e
351 B
Del
OK
wp-comments-post.php3e91ed
2.27 KB
Del
OK
wp-config-sample.php79702b
3.26 KB
Del
OK
wp-config.php3d82bc
3.26 KB
Del
OK
wp-contenta9dc6a
-
Del
OK
wp-cron.php
2.74 KB
Del
OK
wp-cron.php500dad
5.49 KB
Del
OK
wp-includes
-
Del
OK
wp-includes55c4b0
-
Del
OK
wp-links-opml.php3f98f8
2.43 KB
Del
OK
wp-load.php53264f
3.84 KB
Del
OK
wp-login.phpe375c2
50.23 KB
Del
OK
wp-mail.php129f8e
8.52 KB
Del
OK
wp-settings.phpca347e
30.33 KB
Del
OK
wp-signup.php8d3c99
33.71 KB
Del
OK
wp-trackback.php99948b
5.09 KB
Del
OK
xmlrpc.phpf4fb5a
3.13 KB
Del
OK
Edit: wp-comments-post.php3e91ed
<?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', 'HTTP/3' ), true ) ) { $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 __DIR__ . '/wp-load.php'; nocache_headers(); $comment = wp_handle_comment_submission( wp_unslash( $_POST ) ); if ( is_wp_error( $comment ) ) { $data = (int) $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(); $cookies_consent = ( isset( $_POST['wp-comment-cookies-consent'] ) ); /** * Fires after comment cookies are set. * * @since 3.4.0 * @since 4.9.6 The `$cookies_consent` parameter was added. * * @param WP_Comment $comment Comment object. * @param WP_User $user Comment author's user object. The user may not exist. * @param bool $cookies_consent Comment author's consent to store cookies. */ do_action( 'set_comment_cookies', $comment, $user, $cookies_consent ); $location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID; // If user didn't consent to cookies, add specific query arguments to display the awaiting moderation message. if ( ! $cookies_consent && 'unapproved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_author_email ) ) { $location = add_query_arg( array( 'unapproved' => $comment->comment_ID, 'moderation-hash' => wp_hash( $comment->comment_date_gmt ), ), $location ); } /** * 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;
Save