geekjon
Forum Replies Created
-
Actually, I notice that once I change the “Time to cache” from 3600 to 1800, the display of the Overall posts is again wrong.
Edit: When I change other settings, the displayed posts is wrong again.
- This reply was modified 3 months, 1 week ago by geekjon.
Thanks. Resetting Settings has restored the normal behavior of the Overall posts list.
Please confirm that if I reset all settings, this will not reset my statistics.
I disabled the Top 10 caching before giving you those queries. Yes, I am looking to output the Top / Overall posts, but what I see displayed when viewing the published page are more recent posts and not the older posts that should be included in Top / Overall posts.
Here is a query:
SELECT wp_posts.*,wp_top_ten.postnumber, wp_top_ten.cntaccess as visits, wp_top_ten.blog_id
FROM wp_posts
INNER JOIN wp_top_ten
ON wp_top_ten.postnumber=wp_posts.ID
WHERE 1=1
AND ( wp_posts.post_date <= '2026-02-16 10:00:48' )
AND ( wp_posts.ID NOT IN (
SELECT object_id
FROM wp_term_relationships
WHERE term_taxonomy_id IN (4509,17723,18436,18867,20158) ) )
AND wp_posts.post_password = ''
AND wp_posts.post_type = 'post'
AND ((wp_posts.post_status = 'publish'
OR wp_posts.post_status = 'inherit'))
AND wp_top_ten.blog_id IN ('1')
GROUP BY wp_posts.ID
ORDER BY wp_top_ten.cntaccess DESC
LIMIT 0, 60And another query:
SELECT wp_posts.ID
FROM wp_posts
WHERE 1=1
AND ( wp_posts.post_date <= '2026-02-16 10:00:48' )
AND ( wp_posts.ID NOT IN (
SELECT object_id
FROM wp_term_relationships
WHERE term_taxonomy_id IN (4509,17723,18436,18867,20158) ) )
AND wp_posts.post_password = ''
AND wp_posts.post_type = 'post'
AND ((wp_posts.post_status = 'publish'
OR wp_posts.post_status = 'inherit'))
GROUP BY wp_posts.ID
ORDER BY wp_posts.post_date DESC
LIMIT 0, 60Forum: Plugins
In reply to: [WPtouch - Make your WordPress Website Mobile-Friendly] Slider doesn’t workShould there be a checkbox to “Enable featured slider”? If so, I’m not seeing one.
Forum: Plugins
In reply to: [Hyper Cache] Refresh homepage after new postOk. I found the index.hml file in the cache and opened it up and inspected it. It was modified and updated when I published a new post. However, that information is not what shows when going to domain.com . The homepage shows old posts since before cleaning the cache.
Forum: Plugins
In reply to: [Hyper Cache] Refresh homepage after new postI’m having the same trouble with the homepage not invalidating when a new post is published/edited/unpublished. I don’t want to turn off caching for my busy homepage.
I looked in the cache folder and I see no file that would be the homepage, so I’m not entirely sure where it is stored.
I was able to get the query to work with this array:
$args = array( 'post_type' => 'post', 'taxonomy' => 'artist', 'field' => 'slug', 'term' => $current_artist, 'post_status' => 'publish', 'posts_per_page' => -1, 'caller_get_posts'=> 1, );HOWEVER, part of what made this difficult to troubleshoot is that there seems to be some inconsistencies with the relationships of my Artists (CPT-onomy) to my posts.
Is there any way to “rebuild” those relationships?Forum: Hacks
In reply to: How to exclude tags via URL parameters?Thanks. This looks promising, but I haven’t been able to test it yet.
Do you happen to know how to modify this to be a simple plugin?Thanks. I must have overlooked the Customize tab.
Forum: Plugins
In reply to: Any cache plugins that automatically purge unpublished page?Anyone?
I may have posted this in the wrong forum, but when I tried to repost it in a more appropriate forum, the post was deleted. Sorry about that.
Forum: Fixing WordPress
In reply to: client denied by server configurationI just realized that Search Permalink hasn’t been updated in quite a while. I am trying Nice Search instead.
Forum: Fixing WordPress
In reply to: client denied by server configurationThe permissions are 644 for search-permalink.php, just like all the other plugins.
Forum: Fixing WordPress
In reply to: Remove all images from posts using phpMyAdminAnyone?