Jason M
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Database ErrorAlso this error is happening in error_log:
[15-Dec-2022 23:01:53 UTC] WordPress database error Table 'HIDDEN.wp_wc_customer_lookup' doesn't exist for query SELECT COUNT(*) FROM <code>wp_wc_customer_lookup</code> AS wpl JOIN <code>wp_wc_order_stats</code> as wps ON wpl.customer_id = wps. customer_id WHERE wpl.user_id=122132 made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Form_Handler::process_login, wp_signon, do_action('wp_login'), WP_Hook->do_action, WP_Hook->apply_filters, XLWCTY_Common::update_user_order_count, XLWCTY_Common::get_customer_order_count
Your solution of deleting the ‘easy-hide-login’ folder has solved the issue for me. Thank you!
By the way, I’ve tried loads of different hosting providers and I am absolutely in love with a2hosting! I hope you guys keep your services awesome!
Forum: Fixing WordPress
In reply to: Various widget & block related PHP errorsUsing php 7.4 (not sure if that’s relative) but my 30+ WordPress sites all have errors like this:
[04-Jan-2022 15:45:11 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /wp-includes/blocks/index.php on line 9 [04-Jan-2022 15:45:11 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /wp-includes/blocks/index.php on line 9 [04-Jan-2022 15:45:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /wp-includes/blocks/index.php on line 9 [04-Jan-2022 15:45:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /wp-includes/blocks/index.php on line 9
Forum: Themes and Templates
In reply to: [Responsive] WP_Error could not be converted to stringHere are the contents of that file: https://pastebin.com/zaN4p3GV
Forum: Plugins
In reply to: [Redirection] 410 (Gone) redirect – is it possible?This should solve the problem if you toss this code into .htaccess:
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^.*$ - [G,L]
Forum: Fixing WordPress
In reply to: 3.7 Search for Plugins in CP gives "unexpected error…"I love how on every thread people are blaming what plugins are installed yet this problem is happening to a massively growing number of people who have upgraded to 3.7. I’m willing to bet there’s a problem with 3.7, not our plugins directories…
The question is: How soon will a fix be rolled out?
Forum: Plugins
In reply to: [Plugin: Jetpack] Can't disable opengraphHas anyone noticed that GTS Translation will not work properly with Yoast SEO? Google Webmaster Tools is showing hundreds of duplicate meta descriptions across all the /language/*/ pages…this is probably bad for SEO and I absolutely cannot find a solution for this anywhere…if only there were some magical way to force GTS to translate the output of the Yoast SEO plugin…if anyone could help I would appreciate it very much so.
I think I finally found the right spot to ask my question…
1) Does anyone know of a sitemap generator which will include all of the languages from the GTS Translation plugin?
2) If no answer to question #1 … What is the easiest/best method that I can add them myself to sitemap.xml?
Forum: Fixing WordPress
In reply to: Problem Sharing Thumbnails On FacebookI’m getting the same error on a few of my blogs when I update a post. Would be nice to get some help with this!
Forum: Fixing WordPress
In reply to: Older Entries Link Resulting In Blank PageSolved. Plugin related.
Forum: Fixing WordPress
In reply to: Older Entries Link Resulting In Blank PageHere’s what lies within index.php relative to this problem I’m having:
<?php if (function_exists('page_navi')) { // if expirimental feature is active ?> <?php page_navi(); // use the page navi function ?> <?php } else { // if it is disabled, display regular wp prev & next links ?> <nav class="wp-prev-next"> <ul class="clearfix"> <li class="prev-link"><?php next_posts_link(__('← Older Entries', 'frantic')) ?></li> <li class="next-link"><?php previous_posts_link(__('Newer Entries →', 'frantic')) ?></li> </ul> </nav> <?php } ?> <?php else : ?> <article id="post-not-found"> <header> <h1><?php _e('Not Found', 'frantic'); ?></h1> </header> <section class="post_content"> <p><?php _e('Sorry, but the requested resource was not found on this site.', 'frantic'); ?></p> </section> <footer> </footer> </article> <?php endif; ?>
Also, notice how the footer looks…totally weird?
That’s what I’ve been looking at for the last few hours. I tried a plethora of closing div tags ranging in number on main index php file. page.php seems to be functioning correctly, when I click on ‘contact’ or any of the other pages, the sidebar is where it’s supposed to be instead of on bottom! If anyone can diagnose this problem, you’re a WP god in my book!
Kind regards,
Jason