sylvsteph
Forum Replies Created
-
Sorry, I had the wrong default page. The directory is ok in his page.
Forum: Plugins
In reply to: [Asgaros Forum] Problem with the widgetHello @asgaros,
Thanks for your answer. The widget works now, I can use it.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Limit to Category or tag does not workHello,
To change font size, go in “style”, don’t choose use default styles and in:
.rpwe-block h3{
background: none !important;
clear: none;
margin-bottom: 0 !important;
margin-top: 0 !important;
font-weight: 400;
font-size: 12px !important;
line-height: 1.5em;
}Change font size
I have sometimes the same problem with category, I don’t know how to solve this. I change it when I see it changed.
- This reply was modified 1 year, 10 months ago by sylvsteph.
Forum: Plugins
In reply to: [Real Media Library: Media Library Folder & File Manager] Blank pageHi again,
The problem was wp-optimize. I received an automatic email by wordpress with the error:
I changed the wp-optimized rules like this (no more save webp version, save original image and delete images…). Everything is working now, thanks.
Forum: Plugins
In reply to: [Real Media Library: Media Library Folder & File Manager] Blank pageI use firefox with extensions (pocket, adblocker ultimate non active in my site), clear cache, empty cache, print friendly pdf, facebook container)
It’s the same blank page with Microsoft Age (no extensions, I use it only for testing)
- This reply was modified 1 year, 10 months ago by sylvsteph.
Forum: Plugins
In reply to: [Real Media Library: Media Library Folder & File Manager] Blank pageHi Matthias,
Thanks. Here’s the screenshot.
Forum: Plugins
In reply to: [Real Media Library: Media Library Folder & File Manager] Blank pageHello Matthias,
The vidéo : https://drive.google.com/file/d/1s79XGMUPhgtltoEA77YEthgtcoTkUEJc/view?usp=sharing
Thanks
Forum: Plugins
In reply to: [AddToAny Share Buttons] share count not showing upHello,
I have the same problem.Hello,
yesterday I had that fatal error. I removed jetpack with filezila and reinstalled it. It worked until the WordPress update this morning. It crashed with that update and I had to remove jetpack again with filezila and reinstalled It.
Question : i’m at home with the computer so i can use filezila. What can I do if i have only the Android phone ? No more access to Website or admin so i need an access to the jetpack folder of the Website to delete It.- This reply was modified 2 years ago by sylvsteph.
Hi Bruce,
it’s à fb page. It was working well between 2015 and april 2021. I had to uninstall and install again jetpack in april. I can’t connect anymore to fb.
The address: https://www.rythmes-croises.orgForum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Problem transientHi Stef,
Thanks for your answer.
I see in Jetpack’s plugin, in Modules / Protect, a transient-cleanup.php file with:<?php /* Adapted from Purge Transients by Seebz https://github.com/Seebz/Snippets/tree/master/Wordpress/plugins/purge-transients */ if ( ! function_exists( 'jp_purge_transients' ) ) { /** * Jetpack Purge Transients. * * @access public * @param string $older_than (default: '1 hour') Older Than. * @return void */ function jp_purge_transients( $older_than = '1 hour' ) { global $wpdb; $older_than_time = strtotime( '-' . $older_than ); if ( $older_than_time > time() || $older_than_time < 1 ) { return false; } $sql = $wpdb->prepare( " SELECT REPLACE(option_name, '_transient_timeout_jpp_', '') AS transient_name FROM {$wpdb->options} WHERE option_name LIKE '\_transient\_timeout\_jpp\__%%' AND option_value < %d ", $older_than_time ); $transients = $wpdb->get_col( $sql ); $options_names = array(); foreach ( $transients as $transient ) { $options_names[] = '_transient_jpp_' . $transient; $options_names[] = '_transient_timeout_jpp_' . $transient; } if ( $options_names ) { $option_names_string = implode( ', ', array_fill( 0, count( $options_names ), '%s' ) ); $delete_sql = "DELETE FROM {$wpdb->options} WHERE option_name IN ($option_names_string)"; $delete_sql = call_user_func_array( array( $wpdb, 'prepare' ), array_merge( array( $delete_sql ), $options_names ) ); $result = $wpdb->query( $delete_sql ); if ( ! $result ) { return false; } } return; } } /** * Jetpack Purge Transients Activation. * * @access public * @return void */ function jp_purge_transients_activation() { if ( ! wp_next_scheduled( 'jp_purge_transients_cron' ) ) { wp_schedule_event( time(), 'daily', 'jp_purge_transients_cron' ); } } add_action( 'admin_init', 'jp_purge_transients_activation' ); add_action( 'jp_purge_transients_cron', 'jp_purge_transients' );
I’m not sure it works because I see hundreds of _transient_timeout_jpp_ in the database. And thousands of stats transients (200 pages in the wp_options db).
Maybe the transient_cleanup.php file would need a more efficient cleaning?Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Problem transientHi Jen,
It seems they’re deleted only once a day after my database have double size. I use wp-optimize.
Is it possible to clean them 4 or 5 times a day with a cron task (my host provider gives me a cron function in the workflow, I don’t know how to use it)?Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Question about xmlrpc file ?Thanks Jen for your answer. I blocked XML-RPC except for jetpack.
It’s working perfectly now.
Thanks.Thank you Marcus.