alexandervansteen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: PHP 7 Non-numeric value in SimplePie DateHi Mike,
Thanks for bringing this up. There is actually a ticket created for this issue at track.ww.wp.xz.cn you can follow it here: https://core.trac.ww.wp.xz.cn/ticket/42515
-Alexander
Forum: Fixing WordPress
In reply to: What is causing this slow query on single post?I guess it is, you can do an EXLPAIN query on it in your MySQL client to see what’s the heavy part of the query and if indexes will help here. Just run the same query and put the syntax EXPLAIN in front of it.
EXPLAIN SELECT t.*, tt.*, tr.object_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('genre', 'region', 'publisher', 'language', 'release-year') AND tr.object_id IN (39000) ORDER BY t.name ASC;- This reply was modified 8 years, 2 months ago by alexandervansteen.
Forum: Fixing WordPress
In reply to: schedule wordpress updates overnightHi there,
You might look into a plugin called Advanced Cron Manager. I know you are able to edit the different update crons there. You might be able to edit the time schedule as well.
-Alexander
Forum: Fixing WordPress
In reply to: mutisite two domainHi there,
Yes that’s possible you can use WordPress MU Domain Mapping for that. Depending on your webhost (and the webserver they use) you might need some help from them configuring.
You might find some more information here:
https://ww.wp.xz.cn/plugins/wordpress-mu-domain-mapping/#description-Alexander