Catchable fatal error: Argument 1 passed to {closure}() must be an instance of string, string given in /data/7/8/78354560-4aa1-4788-b488-402f4502075b/gntobacco.com/public_html/wp-content/themes/astra/template-parts/header/builder/desktop-builder-layout.php on line 41
There has been a critical error on this website.
What do I do?
]]>Catchable fatal error: Object of class __PHP_Incomplete_Class could not be converted to string in /var/sites/t/thepartypod.co.uk/public_html/wp-includes/formatting.php on line 463
There has been a critical error on your website. Please check your site admin email inbox for instructions.
The email I received said that all was ok with the plugins. I have access to the FTP site.
Help please.
]]>Catchable fatal error: Argument 2 passed to Elementor\TemplateLibrary\Source_Local::on_save_post() must be an instance of WP_Post, null given in /home1/wmerheby/distichain.com/wp-content/plugins/elementor/includes/template-library/sources/local.php on line 1027
]]>Localhost its running but when its hosted website isnt opening because of this error. please help
]]>I am running wordpress 5.2.2 and php 7.2
After the 3.6.10 update, my site failed (white screen of death) with this error on the screen:
Catchable fatal error: Argument 3 passed to GuzzleHttp\Client::request() must be of the type array, string given, called in /home4/hrpta/public_html/wp/wp-content/plugins/backwpup/vendor/guzzlehttp/guzzle/src/Client.php on line 89 and defined in /home4/hrpta/public_html/wp/wp-content/plugins/backwpup/vendor/guzzlehttp/guzzle/src/Client.php on line 128
The site is experiencing technical difficulties. Please check your site admin email inbox for instructions.
I used wordpress recovery mode to disable backwpup and now my site is working again. Is there a fix for this?
Thanks!
]]>Catchable fatal error: Argument 2 passed to AddThisAdminUtilities::enqueueNotice() must be an instance of callable, array given, called in /homepages/15/d146612849/htdocs/thesavvylife/wp-content/plugins/addthis/backend/AddThisAmp.php on line 97 and defined in /homepages/15/d146612849/htdocs/thesavvylife/wp-content/plugins/addthis/backend/AddThisAdminUtilities.php on line 33
I get the same error when I try to log in, so I cannot disable plug-ins or even revert to a previously backed up version.
I am using WordPress 5.1.1 but am still using PHP 5.2 (I was in the process of identifying replacement plug-ins to make sure my site would function with PHP 7.2)
How can I get access to my page to diagnose, revert and fix?
Thank you
]]>on each media page I obtain error message
?
CATCHABLE FATAL ERROR: OBJECT OF CLASS WP_ERROR COULD NOT BE CONVERTED TO STRING IN /HOME/O*****A100/S*****CH_SK/WP-CONTENT/THEMES/ARCHI/FUNCTIONS.PHP ON LINE 486?
https://www.sadarch.sk/o-nas/o-nas-2/
this error
DOMOV /
CATCHABLE FATAL ERROR: OBJECT OF CLASS WP_ERROR COULD NOT BE CONVERTED TO STRING IN /HOME/OA004100/SADARCH_SK/WP-CONTENT/THEMES/ARCHI/FUNCTIONS.PHP ON LINE 486
line 486 – sadarch_sk/wp-content/themes/archi/functions.php:
$cats = str_replace('<a', $linkBefore . '<a' . $linkAttr, $cats);
Whole function code:
function archi_breadcrumbs() {
$text['home'] = __('Home', 'archi'); // text for the 'Home' link
$text['category'] = '%s'; // text for a category page
$text['tax'] = '%s'; // text for a taxonomy page
$text['search'] = '%s'; // text for a search results page
$text['tag'] = '%s'; // text for a tag page
$text['author'] = '%s'; // text for an author page
$text['404'] = '404'; // text for the 404 page
$showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show
$showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show
$delimiter = ' <b>/</b> '; // delimiter between crumbs
$before = '<li class="active">'; // tag before the current crumb
$after = '</li>'; // tag after the current crumb
global $post;
$homeLink = esc_url(home_url('/')) . '';
$linkBefore = '<li>';
$linkAfter = '</li>';
$linkAttr = ' rel="v:url" property="v:title"';
$link = $linkBefore . '<a' . $linkAttr . ' href="%1$s">%2$s</a>' . $linkAfter;
if (is_home() || is_front_page()) {
if ($showOnHome == 1) echo '<div id="crumbs"><a href="' . $homeLink . '">' . $text['home'] . '</a></div>';
} else {
echo '<ul class="crumb">' . sprintf($link, $homeLink, $text['home']) . $delimiter;
if ( is_category() ) {
$thisCat = get_category(get_query_var('cat'), false);
if ($thisCat->parent != 0) {
$cats = get_category_parents($thisCat->parent, TRUE, $delimiter);
$cats = str_replace('<a', $linkBefore . '<a' . $linkAttr, $cats);
$cats = str_replace('</a>', '</a>' . $linkAfter, $cats);
echo htmlspecialchars_decode( $cats );
}
echo htmlspecialchars_decode( $before ) . sprintf($text['category'], single_cat_title('', false)) . htmlspecialchars_decode( $after );
} elseif( is_tax() ){
$thisCat = get_category(get_query_var('cat'), false);
if ($thisCat->parent != 0) {
$cats = get_category_parents($thisCat->parent, TRUE, $delimiter);
$cats = str_replace('<a', $linkBefore . '<a' . $linkAttr, $cats);
$cats = str_replace('</a>', '</a>' . $linkAfter, $cats);
echo htmlspecialchars_decode( $cats );
}
echo htmlspecialchars_decode( $before ) . sprintf($text['tax'], single_cat_title('', false)) . htmlspecialchars_decode( $after );
}elseif ( is_search() ) {
echo htmlspecialchars_decode( $before ) . sprintf($text['search'], get_search_query()) . htmlspecialchars_decode( $after );
} elseif ( is_day() ) {
echo sprintf($link, get_year_link(get_the_time('Y')), get_the_time('Y')) . $delimiter;
echo sprintf($link, get_month_link(get_the_time('Y'),get_the_time('m')), get_the_time('F')) . $delimiter;
echo htmlspecialchars_decode( $before ) . get_the_time('d') . htmlspecialchars_decode( $after );
} elseif ( is_month() ) {
echo sprintf($link, get_year_link(get_the_time('Y')), get_the_time('Y')) . $delimiter;
echo htmlspecialchars_decode( $before ) . get_the_time('F') . htmlspecialchars_decode( $after );
} elseif ( is_year() ) {
echo htmlspecialchars_decode( $before ) . get_the_time('Y') . htmlspecialchars_decode( $after );
} elseif ( is_single() && !is_attachment() ) {
if ( get_post_type() != 'post' ) {
$post_type = get_post_type_object(get_post_type());
$slug = $post_type->rewrite;
if ( get_post_type() == 'portfolio' ) {
printf($link, $homeLink . '' . $slug['slug'] . '/', 'portfolio'); //Translate portfolio breadcrumb.
}elseif (get_post_type() == 'service') {
printf($link, $homeLink . '' . $slug['slug'] . '/', 'service'); //Translate service breadcrumb.
}else{
printf($link, $homeLink . '' . $slug['slug'] . '/', $post_type->labels->singular_name);
}
if ($showCurrent == 1) echo htmlspecialchars_decode( $delimiter ) . $before . get_the_title() . $after;
} else {
$cat = get_the_category(); $cat = $cat[0];
$cats = get_category_parents($cat, TRUE, $delimiter);
if ($showCurrent == 0) $cats = preg_replace("#^(.+)$delimiter$#", "$1", $cats);
$cats = str_replace('<a', $linkBefore . '<a' . $linkAttr, $cats);
$cats = str_replace('</a>', '</a>' . $linkAfter, $cats);
echo htmlspecialchars_decode( $cats );
if ($showCurrent == 1) echo htmlspecialchars_decode( $before ) . get_the_title() . $after;
}
} elseif ( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ) {
$post_type = get_post_type_object(get_post_type());
echo htmlspecialchars_decode( $before ) . $post_type->labels->singular_name . htmlspecialchars_decode( $after );
} elseif ( is_attachment() ) {
$parent = get_post($post->post_parent);
$cat = get_the_category($parent->ID); $cat = $cat[0];
$cats = get_category_parents($cat, TRUE, $delimiter);
$cats = str_replace('<a', $linkBefore . '<a' . $linkAttr, $cats);
$cats = str_replace('</a>', '</a>' . $linkAfter, $cats);
echo htmlspecialchars_decode( $cats );
printf($link, get_permalink($parent), $parent->post_title);
if ($showCurrent == 1) echo htmlspecialchars_decode( $delimiter ) . $before . get_the_title() . $after;
} elseif ( is_page() && !$post->post_parent ) {
if ($showCurrent == 1) echo htmlspecialchars_decode( $before ) . get_the_title() . $after;
} elseif ( is_page() && $post->post_parent ) {
$parent_id = $post->post_parent;
$breadcrumbs = array();
while ($parent_id) {
$page = get_page($parent_id);
$breadcrumbs[] = sprintf($link, get_permalink($page->ID), get_the_title($page->ID));
$parent_id = $page->post_parent;
}
$breadcrumbs = array_reverse($breadcrumbs);
for ($i = 0; $i < count($breadcrumbs); $i++) {
echo htmlspecialchars_decode( $breadcrumbs[$i] );
if ($i != count($breadcrumbs)-1) echo htmlspecialchars_decode( $delimiter );
}
if ($showCurrent == 1) echo htmlspecialchars_decode( $delimiter ) . $before . get_the_title() . $after;
} elseif ( is_tag() ) {
echo htmlspecialchars_decode( $before ) . sprintf($text['tag'], single_tag_title('', false)) . $after;
} elseif ( is_author() ) {
global $author;
$userdata = get_userdata($author);
echo htmlspecialchars_decode( $before ) . sprintf($text['author'], $userdata->display_name) . $after;
} elseif ( is_404() ) {
echo htmlspecialchars_decode( $before ) . $text['404'] . $after;
}
if ( get_query_var('paged') ) {
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() );
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ')';
}
echo '</ul>';
}
}
Ocean Themes
]]>Catchable fatal error: Object of class WP_Error could not be converted to string in /home/swhealth/public_html/dev/wp-content/themes/kyma/functions.php on line 325
The image URL works fine: https://swhealth.org/dev/wp-content/uploads/2017/12/Cost.jpg
Thoughts?
Thanks in advance!
]]>I have an issue with my Elementor Landingpage, which I′ve been working on for a few days. I could not work an the final version anymore and get a blank page without any Details. The content is still available in the usual wordpress editor but (of course) not in the way it has to look.
Increasing the php-memory didn′t work out and therefore Iset debug to true and this is the problem report:
“Catchable fatal error: Argument 1 passed to Elementor\Controls_Stack::_get_items() must be of the type array, string given, called in /home/www/wp-content/plugins/elementor/includes/base/controls-stack.php on line 236 and defined in /home/www/wp-content/plugins/elementor/includes/base/controls-stack.php on line 48”
Any idea what the problem is? Is there any possibiliy to get it back so I don′t have to build it again?
Hopefully
Ploeppi