almendron
Forum Replies Created
-
Forum: Plugins
In reply to: [Broken Link Checker] The scanner does not workThank you very much for your explanations. However:
I have three WordPress. Each of them in a folder.
https://www.almendron.com/tribuna/
https://www.almendron.com/blog/
https://www.almendron.com/artehistoria/When I scan “blog”, the plugin should scan only on that site. The same for “tribuna” and “artehistoria”.
However, the plugin scans all.
Forum: Plugins
In reply to: [Broken Link Checker] The scanner does not workI have accessed the full report and found links that do not correspond to the website.
Active website: https://www.almendron.com/artehistoria/
Example link that is not from that website: https://www.almendron.com/blog/sentimientos-en-las-paredes-de-las-ciudades/In the report there are links to three different sites. There are three wordpress installed in three subfolders.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Dynamic property- I have downloaded the latest version of Jetpack and the files are identical to the ones I have on my local server.
- I correct the path: C:\wamp64\www\artehistoria\wp-content\plugins\jetpack\_inc\lib\admin-pages\class.jetpack-admin-page.php on line 67
- The other path is correct: C:\wamp64\www\artehistoria\wp-content\plugins\jetpack\class-jetpack-gallery-settings.php on line 34
class.jetpack-admin-page.php on line 67:
$this->jetpack = $jetpack;public function on_jetpack_loaded( $jetpack ) { $this->jetpack = $jetpack; self::$block_page_rendering_for_idc = ( Identity_Crisis::validate_sync_error_idc_option() && ! Jetpack_Options::get_option( 'safe_mode_confirmed' ) ); }class-jetpack-gallery-settings.php on line 34:
$this->gallery_types = apply_filters( 'jetpack_gallery_types', array( 'default' => __( 'Thumbnail Grid', 'jetpack' ) ) );public function admin_init() { /** * Filter the available gallery types. * * @module shortcodes, tiled-gallery * * @since 2.5.1 * * @param array $value Array of the default thumbnail grid gallery type. Default array contains one key, ‘default’. */ this->gallery_types = apply_filters( 'jetpack_gallery_types', array( 'default' => __( 'Thumbnail Grid', 'jetpack' ) ) ); // Enqueue the media UI only if needed. if ( count( $this->gallery_types ) > 1 ) { add_action( 'wp_enqueue_media', array( $this, 'wp_enqueue_media' ) ); add_action( 'print_media_templates', array( $this, 'print_media_templates' ) ); } // Add Slideshow and Galleries functionality to core's media gallery widget. add_filter( 'widget_media_gallery_instance_schema', array( $this, 'core_media_widget_compat' ) ); }Usage of dynamic properties. See solutions:
Forum: Plugins
In reply to: [Broken Link Checker] Dynamic propertyThank you. Best regards
Forum: Plugins
In reply to: [Broken Link Checker] Dynamic propertyBroken Link Checker 2.0.0
Deprecated: Creation of dynamic property blcAnyPostContainer::$updating_urls is deprecated in /home/almendron/www/tribuna/wp-content/plugins/broken-link-checker/legacy/includes/containers.php on line 514
Forum: Plugins
In reply to: [Broken Link Checker] Dynamic propertyBroken Link Checker 2.0.0
Deprecated: Creation of dynamic property WPMUDEV_BLC\App\Admin_Modals\Plugin_Activation\Controller::$unique_id is deprecated in XXX/wp-content/plugins/broken-link-checker/core/utils/abstracts/class-base.php on line 56
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Deprecated: preg_replace():I found out what the problem was
Social module: deactivated
Share module: activated
Twitter site tag: no relevance
Filter on archive functions.php. This is what causes the erroradd_filter ( 'jetpack_sharing_twitter_via', 'afn_add_twitterhandle_via' ); function afn_add_twitterhandle_via() { if (!is_user_logged_in() ): return 'XXXXXXXX'; endif; }It should be changed to
add_filter ( 'jetpack_sharing_twitter_via', 'afn_add_twitterhandle_via' ); function afn_add_twitterhandle_via() { if (is_user_logged_in() ): return ''; else : return 'XXXXXXXX'; endif; }sharing-sources.php:
$twitter_site_tag_value = apply_filters( 'jetpack_sharing_twitter_via', $twitter_site_tag_value, $post->ID ); return preg_replace( '/[^\da-z_]+/i', '', $twitter_site_tag_value );If the value of the variable “$twitter_site_tag_value” is null or empty, then “preg_replace” fails.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Versión 19.1Sorry. Version 11.9.1 and no 19.1
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Contact supportThe information is incorrect and misleading.
At https://wordpress.com/checkout/jetpack/jetpack_social_basic_yearly it states 1 euro per year.

I will write to inquire.
Thank you.
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] PHP NoticeThank you.
Best,
Miguel.Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Connection errorFixed. The link generated to connect to my user account was wrong. A parameter value was missing.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Connection errorAlright, I will do what you tell me.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Connection errorTest performed:
1) JetPack plugin disabled and deleted
2) Complete cleanup of the xx_options table related to the plugin
3) Disable all plugins
4) Install Jetpack plugin
5) Connect Jetpack with my user account: ERROR!!!!!!!!!!!!!Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Connection errorI prefer to do a manual wipe. It is safer.
xx_options table:
1) Option name starts with “jetpack”.
2) Option name starts with “_transient” and contains “jetpack”
2) I have doubts about the following options:
jpsq_full_sync_checkout jpsq_sync_checkout jp_sync_error_log_immediate-send jp_sync_error_log_sync jp_sync_last_success_immediate-send jp_sync_last_success_sync jp_sync_lock_full_sync jp_sync_lock_full_sync_enqueue jp_sync_retry_after_immediate-send jp_sync_retry_after_syncForum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Connection errorSecond test
1) Jetpack disabled
2) Activate “Delete Jetpack options”
3) Result: negative. In the “xx_options” table are the JetPack options. Options have not been cleared