a_hongjie
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Cache] cached incorrect page/**
* Lets you remove certain plugin conflicts that might interfere with this plugin
*/
protected function removePluginConflicts() {
if ( class_exists( ‘AIO_WP_Security’ ) && isset( $GLOBALS[ ‘aio_wp_security’ ] ) ) {
remove_action( ‘init’, [ $GLOBALS[ ‘aio_wp_security’ ], ‘wp_security_plugin_init’ ], 0 );
}
if ( @function_exists( ‘\wp_cache_setting’ ) ) {
@wp_cache_setting( ‘wp_super_cache_late_init’, 0 );
}
}Forum: Plugins
In reply to: [WP Super Cache] cached incorrect pageThe plugin of WP simple fire wall change the valude of wp_super_cache_late_init to casue this problem, After I change it to 0, it works fine.
If wp_super_cache_late_init = 1, it will cause some of problem to generate the page.
wp_enqueue_style function can’t add script or CSS into the page.
Forum: Plugins
In reply to: [WP Super Cache] cached incorrect page./plugins/wp-simple-firewall/src/lib/src/Modules/Plugin/Processor.php: @wp_cache_setting( ‘wp_super_cache_late_init’, 1 );
I noticed The plugin of simple firewall will set this value as 1 automatically! why? does it make sense to cause a security problem!
Forum: Plugins
In reply to: [WP Super Cache] cached incorrect pageI found the root cause! wp_super_cache_late_init is set as 1! but I can’t uncheck it from Dashboard, after I disabled it, it will be selected again automatically, eventhough I open the file wp-cache-config.ph and change the value to 0 manully, it will be write back to 1 after I refresh dashbaord plugin related page, would you please let me know how to change the value to 0? $wp_super_cache_late_init = 0?
Thank you so much!
Forum: Plugins
In reply to: [WP Super Cache] cached incorrect pagethank you! let me check it again.
Forum: Plugins
In reply to: [WP Super Cache] cached incorrect pagecurrently I closed the cache feature for subsite of US google, the other subsite works fine.
Forum: Plugins
In reply to: [WP Super Cache] cached incorrect pagethis for your support firstly! this is the URL for chromebook:
https://www.synnexcorp.com/us/google/chromebooks/even though I delete all of cache and delete the cache folder, once the cache is generate d again, it still missing header and images, so I am thinking if the plugin cache something in database? or it is a plugin conflict? how does the cache pugin works?
Thanks
Forum: Plugins
In reply to: [WP Super Cache] cached incorrect pageIS there anyone support?
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] No Events FoundThanks you! When I was trying to reset time zone: but I met the below error:
There was an error whilst migrating your times to our new timezone-aware formats. Below is a list of errors:
Event start/end UTC offset: Unknown column ‘event_end’ in ‘where clause’
Event timezone setting: Unknown column ‘event_timezone’ in ‘where clause’Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] No Events FoundIn 5.9 EM version the mata key is _event_start_date and _event_end_date.
In 5.8 version the mata key is _start_ts and _end_ts.From 5.8 to 5.9, all of the old events can’t be found from dashboard because the meta key is changed, would you please help me to check?
SELECT SQL_CALC_FOUND_ROWS
wp_62_posts.ID
FROM
wp_62_posts
INNER JOIN wp_62_postmeta ON (
wp_62_posts.ID = wp_62_postmeta.post_id
)
INNER JOIN wp_62_postmeta AS mt1 ON (wp_62_posts.ID = mt1.post_id)
WHERE
1 = 1
AND (
wp_62_postmeta.meta_key = ‘_start_ts’
AND (
(
mt1.meta_key = ‘_end_ts’
AND mt1.meta_value >= ‘1615852800’
)
)
)
AND wp_62_posts.post_type = ‘event’
AND (
wp_62_posts.post_status = ‘publish’
OR wp_62_posts.post_status = ‘acf-disabled’
OR wp_62_posts.post_status = ‘future’
OR wp_62_posts.post_status = ‘draft’
OR wp_62_posts.post_status = ‘pending’
OR wp_62_posts.post_status = ‘private’
)
GROUP BY
wp_62_posts.ID
ORDER BY
wp_62_postmeta.meta_value + 0 ASC
LIMIT 0,
20`Thanks
I figure this out!!I can’t use super admin to log in.
Totally there are 40 blogs, and I have created a new site called /globallibrary/,
But only six blogs show in dashboard. I have tried to add global library site administrator to other blog as a new user, and added a other site administrator to globallibrary site as well, it didn’t work, still only six blogs shown up.
The log as below:
High enough role to link: yes
Post supports custom fields: yes
Post supports thumbnails: yes
High enough role to broadcast custom fields: yes
High enough role to broadcast taxonomies: yes
Blogs available to user: 7How can I add all 40 blogs in dashboard? thank you in advanced!
okay, let me check the code, thank you very much Edward!
Thanks for your quick response!
1. I will wait for the feedback from you.
2. I forgot to add it as a user for all sites, Got it, thanks.