Hey,
Sorry for the delay. Hopefully the following will help
WP Admin log:
“PHP Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version.”
Debug:
PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 54805736 bytes) in /home3/steve90/public_html/wp-includes/class-requests.php on line 381
These refer to:
public static function request($url, $headers = array(), $data = array(), $type = self::GET, $options = array()) {
if (empty($options[‘type’])) {
$options[‘type’] = $type;
}
$options = array_merge(self::get_default_options(), $options);
self::set_defaults($url, $headers, $data, $type, $options);
$options[‘hooks’]->dispatch(‘requests.before_request’, array(&$url, &$headers, &$data, &$type, &$options));
if (!empty($options[‘transport’])) {
$transport = $options[‘transport’];
if (is_string($options[‘transport’])) {
$transport = new $transport();
}
}
else {
$need_ssl = (0 === stripos($url, ‘https://’));
$capabilities = array(‘ssl’ => $need_ssl);
$transport = self::get_transport($capabilities);
}
$response = $transport->request($url, $headers, $data, $options);
$options[‘hooks’]->dispatch(‘requests.before_parse’, array(&$response, $url, $headers, $data, $type, $options));
return self::parse_response($response, $url, $headers, $data, $options);
}
01-Dec-2018 15:00:02 UTC] PHP Notice: Trying to get property of non-object in /home3/steve90/public_html/wp-content/plugins/wp-members/inc/class-wp-members.php on line 1487
[01-Dec-2018 15:00:02 UTC] PHP Notice: Trying to get property of non-object in /home3/steve90/public_html/wp-content/plugins/wp-members/inc/class-wp-members.php on line 1580
[01-Dec-2018 15:00:02 UTC] PHP Notice: Trying to get property of non-object in /home3/steve90/public_html/wp-content/plugins/wp-members/inc/class-wp-members.php on line 1580
Refers to
$autoex = ( isset( $wpmem->autoex[ $post->post_type ] ) && 1 == $wpmem->autoex[ $post->post_type ][‘enabled’] ) ? $wpmem->autoex[ $post->post_type ] : false;
And
$content = apply_filters( ‘wpmem_auto_excerpt’, $content, $post->ID, $post->post_type );