mariusmrs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Disable transient queryI managed to solve the loading problem by adding memcached on database.
Now, may i ask, offtopic, if i add cache on page also, using memcache, is a good ideea? Now i’m using disk cache for pages and memcache for db.Forum: Plugins
In reply to: [W3 Total Cache] Page Cache & DB CacheHello,
I’ve testet memcached, and it’s alot faster, alot alot. But i’m afraid to use it because i have big traffic and i don’t know if it’s safe. I gived 4gb to memcached from the RAM.
But, if you can check that error please, even if i deleted Last-Modified from headers to cache, it still cache that tag.
Forum: Plugins
In reply to: [W3 Total Cache] Page Cache & DB CacheAlso, i’ve found a bug.
When using memcached on page cache, even if i deleted last modifed from the list. It still caches the last modified tag. Can that be resolved somehow?Thanks.
Forum: Fixing WordPress
In reply to: Index on wp_termmetaHey @epsiloncool , thanks for your answer.
I don’t know how to do this 🙁
Can you give me more details please?Forum: Fixing WordPress
In reply to: Index on wp_termmetaHello,
I have the tables innodb at the moment.
I see that innodb doesn’t support fulltext index. Will fulltext index help me if i need to search in meta_value? Because is a longtext row?
Forum: Plugins
In reply to: [Comments - wpDiscuz] Adding Comments on TaxonomyI resolved it by removing
is_singular()
from
return apply_filters(‘is_load_wpdiscuz’, $form->getFormID() && (comments_open($post) || $post->comment_count) && is_singular() && post_type_supports($post->post_type, ‘comments’), $post);
Seems to work fine. Like i said taxonomy comments are the comments of parent post of that taxonomy.